internet-explorer-6

apply class to html tag under IE(6)

Not a problem, but a question to upgrade my knowledge : <script type="text/javascript"> $(document).ready(function(){ if (jQuery.browser.msie) { //If js is not active we couldn't launch html5 compat script. //So we won't bother with conditionnal comments, slowing down engine rendering ...

Javascript if statement refuse to load correctly from exterior script IE6 IE5.5

I see a very funny behaviour in my page when it comes to IE6 and IE5.5. I have a script (supersleight if you know about it) that puts PNG's back in business when dealing with IE6 and IE5.5. During execution of this, I want to change the background into using the Explorer alpha filter (if Javascript is turned on, use filter, otherwise sti...

Different behaviour of Javascript depending on if I type it myself or copy paste it

I get different behaviour from my Javascript depending on if I write it or copy paste it myself from the already existing code or if I copy paste it from the Internet This EXACT code gives different results depending on if the top two or bottom two are active: var tt = 5; alert(tt); //CODE; //CODE; //var tt = 5; //CODE; //alert(tt); ...

Method 'ownerDocument' of object 'IXMLDOMElement' failed

I have a VB6 COM+ component which is being accessed via IE6. When running normally it works as expected, but when I am debugging in VS6 I get an error: Method 'ownerDocument' of object 'IXMLDOMElement' failed The code is as follows and it fails on the last line of this snippet: Private m_ndContract As MSXML2.IXMLDOMNode ... Dim ndEl...

AlphaImageLoader fix for PNG's works online but not locally

I use the AlphaImageLoader fix called supersleight with the following code: var supersleight = function() { var root = false; var applyPositioning = true; // Path to a transparent GIF image var shim = 'images/empty.gif'; // RegExp to match above GIF image name //var shim_pattern = /x\.gif$/i; var fnLoadPngs = function(...

A broken image on top of an image in Internet Explorer 6?

I have a strange issue with a PNG in IE6. The browser displays the image properly, but it then places a broken image indicator on top of the image. I'm not trying to load any other image. This doesn't happen in IE7 or 8. It's like it loads the image displays it, and then tries again to load it and fails. ...

ie6 ul.li hover

i know that ie6 can only do hover on a href element. but i do not need a href element. i have ul.li element like below ul.testclass li { display: inline-block; } ul.testclass li:hover { background-color: #ffffff; } it work on all browsers except ie6. any workaround to make it work in ie6? ...

Strange layout problem in IE6

URL: http://www.hkpete.com/test.html jQuery 1.42 jQuery Tools 1.2.3 overlay IE7 has this problem too (tested on ietester) I can not find where the problems lie. Thanks a lot. <div id="dialog-content"> <!--Login --> <div id="login" class="panel" style="display:none"> Login.................. </div> <!--Register -...

What has happened to the IE6 developer toolbar?

It's supposed to be at this link: http://www.microsoft.com/downloads/en/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&amp;displaylang=en "Supposed" being the operative word! Any ideas? Has Microsoft removed it or accidentally broken the link? ...

:focus on ie6 with csshover3.htc

i try to use csshover3.htc on ie6 for input:focus but fail. Does :focus work on ie6 with csshover3.htc workaround? ...

Does IE6 support any HTML5 elements?

Does IE6 support any HTML5 elements? <!DOCTYPE HTML> <header> <section> <header> <nav> <canvas> <video> ...

Javascript - GetColoumnValue - IE6 problem

Hi all. I have a js function named "GetListColumnValue". This function causes some problems with IE6. Is there any way to avoid the problem? (I thnk the problem is occured because of the concat) Here is the code sample. The last line is my solution which I am not sure that it works well. Any suggestions? Thanks. function GetListColumnVa...

What actually breaks when updating from IE6 to IE7+?

We've heard for a long time that big companies won't upgrade from IE6 because some crucial legacy app was built specifically for IE6. Unfortunately the definition of "App", weather its a web app, desktop app, browser plugin(!), or something else is not specified. But what actually breaks when upgrading beyond IE6? I can't really think o...

MIME issues with IE6

I'm developing a web service that will allow my clients to download files of any type that are stored as binary data. Firefox 3.6.9 successfully prompts the user with the download dialog. However, my clients will be using IE6, which simply prints the binary data on the screen instead of prompting the user to download. Is IE6 ignoring m...

Page displays blank in IE6 only when refreshed does it display

On select pages on my website, the page is initially blank until you refresh it and the content is displayed. The error disappears when the meta charset data is removed: <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> is changed to: <meta http-equiv="Content-Type" content="text/html;" /> The doctype is XHTML 1...

Page contains both secure and nonsecure items

I'm working on a legacy web application - frames and a mixture of html, asp and aspx. The entire site is https. For some strange reason when I hit a specific page I get the magic message that says the Page contains both secure and nonsecure items. (IE obviously doesn't want to tell me what those resources are) I have checked the page...

jQuery select option list not updated fast enough in IE6

I have a SELECT list that I populate based on the results of an ajax call, then select one of the options based on a previously set variable. This works great on IE8, but on IE6 it does not. Here is the original function: function LoadCategories(jdata) { var options = ''; for (var i = 0; i < jdata.length; i++) { op...

Float Clearing Problem in IE6 - They're Clearing By Themselves!

I'm building a page that has a UL list with its items floated to create 2 columns. See http://epraxadev.com/valencia/food_truck_festival/index2.php It works perfectly in Firefox, Chrome, Safari, IE8, and IE7. The only problem is in IE6. In IE6, instead of the list elements stacking in neat 2-row columns, with the thumbnail floated to th...

Issue with jQuery Tabs CSS in IE6

This is the website in question: http://www.ai-ad.com/2010Cwb/insidePage.html The issue is with the bottom left jQuery UI Tabs (there are five tabs named : 淡水、陽明山、基隆、烏來、石門水庫) In IE 6, when I move the cursor to other tabs, the content height under the tab will change. I don't really know why, I thought it could a problem with jQuery UI...

how to fix opacity on IE6

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); ...