internet-explorer-6

how to fix opacity on IE6

ⅰ亾dé卋堺 提交于 2019-12-04 12:38:36
how to fix opacity on IE6 This code does not work on IE6 ! filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; And this code ! $('#description').animate({opacity: 0.0}, 1000); If you're working with opacity in jQuery, then the fadeIn , faceOut and fadeTo function should be better than animate . In your case it would be $('#description').fadeOut(1000); Or with fadeTo , $('#description').fadeOut(1000, 0.0); But it is work on IE6! :( http://jsbin.com/owisa/3 Where it is not work? Your styled element needs to have layout for the filter to render properly. Try: filter

IE6 min-height dilemma

本秂侑毒 提交于 2019-12-04 12:33:24
问题 Here is my site: http://smartpeopletalkfast.co.uk/ppp/home-page.html I want the input forms to be the same height as the buttons to their right. I've done this with a min-height value so the page would still be usable if the text size was set to greater than this height. The problem is that IE6 doesn't recognize min-height. I could set a fixed height, but I'm worried about users resizing the text beyond this. As it's only a cosmetic issue, I'm tempted just to leave this. Any suggestions?

How to inform users that webapplication does not support IE6

痞子三分冷 提交于 2019-12-04 12:18:47
问题 I have web application and I do not really care about IE6 users. However I would like to have some kind of feature that would inform users that they are using IE6 and that their browser is not supported. I was thinking about two possible solutions: pop-out window (probably Javascript) with text informing the user on every page he visits some special page with information, that user would be redirected to whenever he tries to access my application Both solutions will be sufficient, however I

iframe based IE6 javascript memory leak?

三世轮回 提交于 2019-12-04 09:46:25
问题 I'm loading in content using an iframe via a menu with jquery which is updating the 'src' attribute of the iframe to then load in the desired page. Each of the pages have their own javascript includes and heavy content. The code is as follows:- $(document).ready(function() { loadPage('main.php'); }); function loadPage(url) { $('#applicationFrame').attr('src', url); } And the iframe on the index page looks as follows:- <iframe id="applicationFrame" application="yes" trusted="yes" frameborder=

/*@cc_on and IE6 detection

醉酒当歌 提交于 2019-12-04 09:24:53
When researching JavaScript conditional comments for IE, I stumbled upon @cc_on. This seems to work. However, the wikipedia entry on conditional comments provides the following code for more robust IE detections, specifically IE6: /*@cc_on @if (@_jscript_version > 5.7) document.write("You are using IE8+"); @elif (@_jscript_version == 5.7 && window.XMLHttpRequest) document.write("You are using IE7"); @elif (@_jscript_version == 5.6 || (@_jscript_version == 5.7 && !window.XMLHttpRequest)) document.write("You are using IE6"); @elif (@_jscript_version == 5.5) document.write("You are using IE5.5");

How to solve the select overlap bug in IE6?

我们两清 提交于 2019-12-04 08:05:19
问题 When using IE, you cannot put an absolutely positioned div over a select input element. That's because the select element is considered an ActiveX object and is on top of every HTML element in the page. I already saw people hiding selects when opening a popup div, that leads to pretty bad user experience having controls disappearing. FogBugz actually had a pretty smart solution (before v6) of turning every select into text boxes when a popup was displayed. This solved the bug and tricked the

If IE 6 , I want to produce warning and free download other browser icons

风流意气都作罢 提交于 2019-12-04 05:08:44
My web site want to be open IE7 and above .If IE 6 ,I want to produce warning and free download other browser icons .Is it possible? You can get some examples that don't require server side scripting from ie6nomore.com . They use the conditional comments feature of IE, like this: <!--[if lt IE 7]> Your browser is outdated! <![endif]--> But the examples on the site actually offer links to other browsers. Of course, you can roll your own version that suits your layout better. Of course, you can do this server side if you prefer, since you're using PHP anyway. The other examples here using $

IE 6 CSS Hover non Anchor Tag

泪湿孤枕 提交于 2019-12-04 05:08:19
What is the simplest and most elegant way to simulate the hover pseudo-class for non-Anchor tags in IE6? I am specifically trying to change the cursor in this instance to that of a pointer. I would say that the simplest method would be to add onmouseover/out Javascript functions. Jon Galloway I think the simplest way is to use the hover.htc approach. You add the hover.htc file to your site, then reference it in your stylesheet: body { behavior:url("csshover.htc"); } If you want to keep things as clean as possible, you can use IE conditional comments so that line is only rendered users with IE6

IE6&7 causes of “This page contains both secure and nonsecure items”

雨燕双飞 提交于 2019-12-04 03:16:41
I have an HTTPS site that in IE6 & 7 displays (in error) a dialog that reads: This page contains both secure and nonsecure items Do you want to display the nonsecure items? This doesn't happen in any proper browsers, but the site is corporate and lots of customers are still on Windows 2000 and IE6. I am familiar with (and have eliminated) the following possible causes of this message: One or more of the resources loaded with the page have http:// instead of https:// - this is the only legitimate reason to display the error, and would cause the same message in working browsers too. Fiddler can

How To Insert OPTIONs into SELECT with jQuery — Cross-Platform, Even IE6

守給你的承諾、 提交于 2019-12-04 02:03:46
I need a cross-platform way to insert OPTIONs into a SELECT with jQuery. I think I recall in the past that IE6 does nothing when this is called: <select id="myselect" size="1"> <option value=""></option> </select> <script type="text/javascript"> $('#myselect').append('<option value="test1">test1</option>'); $('#myselect').append('<option value="test2">test2</option>'); </script> I think I recall that the above worked in all browsers as well as Firefox 2+ and IE7+, but not IE6. Correct? If so, what's the workaround? JavaScript is Cross-Platform, Even IE6. To test how it looks in IE6 open