internet-explorer-6

Strange bug in IE6 for jQuery Tab

十年热恋 提交于 2019-12-13 04:09:12
问题 On this Page http://www.eamobile.com/Web/mobile-games In IE6 while we click on the Tab "Top iPhone Games , Top Mobile Games , Staff pics" the class is not changed in the IE6 and while click inside the tab content area its changed. while in FF and IE7 its works fine. please let us know if you have some solution for this. 回答1: Issue Your problem boils down to these two rules: .topPicksTabs li a.topPicks1:active{ width:235px; background-position:-238px -112px; } .topPicksTabs li.selected a

Download file not working on internet explorer 6 (only for certain people)

霸气de小男生 提交于 2019-12-13 01:56:20
问题 I am working on an ASP.NET MVC3 webapplication. I have a button "Download" that downloads a file from the server. <input type="button" onclick="window.location.href='@Url.Action("DownloadFile", "Home")';" value="Download"/> In the HomeController I call the Action "DownloadFile" that returns the file return File(fileToReturn, Path.GetFileName(fileToReturn)); This is working normally on all browsers. however some people report that the download does not work on Internet Explorer 6. I installed

Why is my onbeforeunload handler causing an “Unspecified error” error?

核能气质少年 提交于 2019-12-12 18:38:46
问题 I am using the following JavaScript function within IE6: window.onbeforeunload = function() { if (itemChanged) { return 'You have made changes to data on this page. If you navigate away from this page without first saving your data, the changes will be lost.'; } }; But when I press the Cancel button on the dialog, I am getting a JavaScript page error: Error: Unspecified error. Any ideas? 回答1: Check your value of (itemChanged). Is it possible something else causes the error? It works fine for

Why isn't my IE6 Conditional stylesheet not working?

笑着哭i 提交于 2019-12-12 16:09:26
问题 This is driving me nuts. I'm trying to use a conditional IE6 stylesheet. I posted this test page here. Here is the code I placed in my head tags: <!--[if IE 6]> <link rel="stylesheet" type="text/css" href="ie6.css" /> <![endif]--> The ie6.css should set the body background to red when viewed in IE6. What's wrong here? I'm sure it's something dumb. Could someone please point it out to me? 回答1: It works fine for me. Run your test page through IE NetRenderer and you'll see the red background.

ActiveX pop-up dialogue window hides IE from tasklist

▼魔方 西西 提交于 2019-12-12 10:26:57
问题 This seems to only happen in IE6 I have an activex form written in Delphi 7. A dialogue window opened from within the activex control in IE6 gets displayed on the taskbar - the users (for some reason) do not want the dialogue to show in the taskbar. So I set the dialogue's borderStyle to bsToolwindow. This hides the dialogue from the taskbar but also has the (side-) effect of hiding IE from the task list in windows, which means that you cannot <alt>Tab back to IE if you tabbed away. Question:

CSS sprite based rollover blinks in IE6

余生颓废 提交于 2019-12-12 09:45:40
问题 I'm using the CSS based rollover "trick" that switches the background position of the element's background image on hover. The CSS #welcome #step1 {background: transparent url(../img/mock/homepage_welcome_step1.png) no-repeat scroll left top;} #welcome #step1:hover {background: transparent url(../img/mock/homepage_welcome_step1.png) no-repeat scroll right top;} The HTML <div id="welcome"> <a class="steps" id="step1" href="?page=signup"></a> ... </div> Naturally IE6 messes this simple thing up

Does IE6 support any HTML5 elements?

我的未来我决定 提交于 2019-12-12 09:38:51
问题 Does IE6 support any HTML5 elements? <!DOCTYPE HTML> <header> <section> <header> <nav> <canvas> <video> 回答1: It barely supports HTML4.... ha :) No it doesn't without some fancy Javascript HTML5 emulating script type-of-thing. Edit Such as this one. 回答2: It depends on what you mean by "HTML5 elements." In that most tags commonly used on the Web are included as part of HTML5, yes, it supports the vast majority of HTML5. If you mean new elements introduced in HTML5 that had never been used

Cufon text z-index (IE6 and IE7 stylish select box bug)

▼魔方 西西 提交于 2019-12-12 09:38:45
问题 I'm replacing some text with cufon on my page and I'm using jquery stylish select box plugin (http://www.scottdarby.com/plugins/stylish-select/0.4/) to style select boxes. The problem is that, in IE6 and IE7, select box goes under the cufonized text. (the select box is actually an <ul> ). Anyone had this issue before? 回答1: i encountered the same problem with a drop down menu, through which the Cufon h1 stays visible in IE 6 & 7. Giving the element in which the ul is placed a z-index solves

CSS dropdown list showing behind the dropdown below, IE6, IE7, absolute positioning bug

你说的曾经没有我的故事 提交于 2019-12-12 07:30:14
问题 I'm facing one of the craziest problems I've ever found in css... I have two CSS-jQuery horizontal dropdowns, one up and one below, displaying the drop-list when clicking on it. The problem comes when I click the upper dropdown in IE6 and IE7, and absolute positioned element goes over relative positioned ones. Upper dropdown list (absolute) shows behing the dropdown (relative) below. JavaScript: $("button").click(function(e){ $(".menu").hide(); $(this).siblings(".menu").show(); e

Background repeat doesn't seem to work in IE6

安稳与你 提交于 2019-12-12 06:16:03
问题 I ve applied a background to my page like this, body { background:#FFFFFF url('images/color.png') repeat top left; color:#666666; font-family:Arial,Helvetica,sans-serif; font-size:80%; font-style:normal; font-variant:normal; font-weight:normal; white-space:nowrap; margin:0 auto; height:100%; } This seems to work in IE7,firefox and chrome but certainly not in IE6. 回答1: IE6 hates pngs..:) leave alone rendering them in background..! you will need some sort of PNGFix for this.. I usually use this