internet-explorer-7

next() not picking up an inner UL with “display: none” in IE7

ⅰ亾dé卋堺 提交于 2019-12-11 08:19:37
问题 This is happening with the following markup: <ul id="sideMenu" class="menuFontStyle"> <li class="category">Test</li> <ul class="secondLevel" style="display: none;"> <li></li> </ul> ... In FF and Chrome the inner UL is being picked up but IE7 seems to be skipping to the next li. What could serve as a workaround? This is with a custom accordion script. 回答1: Your ul is not inside the li as you have closed the li before opening the ul . I don't think this is what you want. Then, to access the <ul

Ajax file upload not working in IE7

最后都变了- 提交于 2019-12-11 08:15:39
问题 I've used this plugin for file upload via Ajax in asp.net mvc3. http://malsup.com/jquery/form/#ajaxSubmit But it won't work in IE7. $("#Controls").submit(function () { var options = { url: "/Education/upDoc", datatype: "json", success: showResponse }; $(this).ajaxSubmit(options); }); function showResponse(responseText, statusText, xhr, $form) { alert("sr"); alert("Sr " + responseText.success); if (responseText.success == true) { //some code } } <form action='' id='Controls' method='post'

XSLT - How to get IE consitional statements working in an XSTL

久未见 提交于 2019-12-11 07:32:23
问题 I've noticed IE conditional statements don't work in the transformed XML document. How do I get IE 6 and above to process them. Code as follows '<!--[if IE 6]><style type="text/css" media="all">@import "/css/ie6.css";</style>' Thanks. 回答1: I've noticed IE conditional statements don't work in the transformed XML document This works for me with IE8 : XML file : <?xml-stylesheet href="deleteIECond.xsl" type="text/xsl" ?> <t/> deleteIECond.xsl : <xsl:stylesheet version="1.0" xmlns:xsl="http://www

CSS cross browser issue

為{幸葍}努か 提交于 2019-12-11 07:25:30
问题 IE6,7 are givimg me grieves on browser display. I didnt have prblems with Safari nor FF. I'm not a CSS expert and in need of advice for this column alignment issues on IE. And I don't know where to begin because I've tried messing around with the css files and the css browser selector javascript and still I can't get it to work on IE. The problems I believe center around id doc, bd, yui-main, yui-b, box and box-titles. For unclear reasons, the sizes show differently in IE from other better

CSS problem with navigation and search filters in IE7

百般思念 提交于 2019-12-11 06:52:46
问题 These are IE7 Only problems: Navigation Problem The active tab "jumps" whenever a user hovers on an inactive tab. Screenshot: http://dl.dropbox.com/u/6688069/navi.jpg Search Filter Problem I can't seem to get the height correct in IE7 without breaking the functionality. Screenshot of what is should look like: http://dl.dropbox.com/u/6688069/filter.jpg Thanks! 回答1: What I'm seeing is that in IE7 this element: <ul class="multiselect" id="multi-filtercountry"/> is causing it those list items to

Does this conditional css loading for IE7 and lower work for IE8 in compability mode?

别来无恙 提交于 2019-12-11 06:17:06
问题 Does this conditional css loading for IE7 and lower work for IE8 in compability mode? <!--[if lt IE 8]> <link rel="stylesheet" type="text/css" href="ie7-and-down.css" /> <![endif]--> 回答1: http://blogs.msdn.com/b/ie/archive/2008/08/27/introducing-compatibility-view.aspx -> This clearly says compatibility view is to force IE8 render a page like IE-7. If you have installed IE developer toolbar ( Install and use IE developer toolbar ), you can check if the CSS is used while rendering OR run the

IE 7 not showing my custom 401 page

最后都变了- 提交于 2019-12-11 06:01:15
问题 I created a 401 page, which is html, and within an accessible directory. It displays in IE 6, Firefox, Safari, but not IE 7. Here is the .htaccess file for setting the authentication on the directory and location for the 401 page. KrbServiceName HTTP KrbMethodNegotiate On KrbMethodK5Passwd On #KrbVerifyKDC on KrbSaveCredentials off KrbAuthRealms HCCC.CAMPUS Krb5KeyTab /etc/httpd/keytab KrbAuthoritative off AuthType Kerberos AuthName "Please Login" AuthBasicProvider ldap AuthzLDAPAuthoritative

Float right is not working in IE 7 but works in FF IE8

怎甘沉沦 提交于 2019-12-11 06:00:33
问题 I have this code <div id="facebook_bar"> <div style="float:left;"> <img src="images/topbar_followus.png" width="70" height="25" /> <img src="images/topbar_twitIcon.png" width="30" height="25" /> <img src="images/topbar_fbicon.png" width="30" height="25" /> </div> <div id="newsletter_box"> <img src="images/topbar_subscribe.png" width="220" height="25" /> <input type="text" name="cm-ktkykk-ktkykk" id="ktkykk-ktkykk" /> <input type="image" src="images/btn_submit.png" width="55" height="25" /> <

IE7 radio button issue when created dynamically

喜夏-厌秋 提交于 2019-12-11 05:54:10
问题 I have an issue in IE7 when I am creating clones of radio buttons. I am dynamically updating the name and ID attributes, however, I still have the issue that a radio button being checked resets any of the others which have been created dynamically. Any idea how this can fixed? Here is a fiddle of the issue This is the JS code which manipulates the form fields: // Dropdown select $('#quantity').live("change", function(){ $('.questions_clonable:not(.questions_clonable:first)').remove(); // Get

Silverlight 2 Does not render content on IE7 IE8 Firefox 3

≡放荡痞女 提交于 2019-12-11 05:32:55
问题 I have a very simple silverlight xaml page displays textbox and a button. When i run my application on IE6 it works fine. But for IE7 IE8 and FF3 - it does not display any content. The page is rendering blank. <div style="height: 100%; width:100%;"> <asp:Silverlight ID="Xaml1" runat="server" Source="~/ClientBin/test.xap" MinimumVersion="2.0.31005.0" Width="100%" Height="100%" HtmlAccess="Enabled" /> </div> Does anyone has any idea what silverlight content is not rendering ? 回答1: I found an