Internet Explorer 6 (IE6) is an old version of Internet Explorer. It was shipped with Windows XP and Windows Server 2003.

learn more… | top users | synonyms (3)

190
votes
43answers
159k views

Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine

Like everyone else ;), I need to test my code on Internet Explorer 6 and Internet Explorer 7. Now Internet Explorer 8 has some great tools for developer, which I'd like to use. I'd also like to start ...
127
votes
11answers
88k views

Remove border from IFrame

How do I remove the border from an IFrame embedded in my web app? An example of the IFrame is: <IFRAME src="myURL" width="300" height="300">Browser not compatible. </IFRAME> I would ...
39
votes
29answers
3k views

IE6: To support or not to support

As most Web developers know, IE6 is a pain to support when it comes to making a website look and feel just as in the other major browsers (Firefox and IE7). I'd like to know what are the feelings of ...
36
votes
9answers
30k views

How to draw vertical text with CSS cross-browser?

i want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit).
35
votes
16answers
29k views

Can I detect IE6 with PHP?

Is there a way to use PHP to detect if the page is being loaded using IE6?
34
votes
33answers
2k views

How best to convince people to upgrade IE?

I recently asked a question that got shot down for being too strongly worded. I'm having another go today because it's something I really am concerned about and I really do want feedback and ideas ...
31
votes
1answer
706 views

Bang IE7 - What does it mean?

That title isn't quite as crazy it seems. I promise!! While researching for another question, I noticed the following in Stack Overflow's stylesheets: ... width: auto; ... width: 650px!ie7; ...
31
votes
3answers
8k views

Do HTML5 custom data attributes “work” in IE 6?

Custom data attributes: http://dev.w3.org/html5/spec/Overview.html#embedding-custom-non-visible-data When I say “work”, I mean, if I’ve got HTML like this: <div id="geoff" data-geoff="geoff de ...
30
votes
11answers
29k views

Internet Explorer 6 emulator recommendation

What good tool can be recommended for emulating Internet Explorer 6? I would rather not have to go and install an old copy of Windows XP somewhere.
26
votes
20answers
1k views

Ethical Dilemma: Should I still cater for IE6 as a web-developer [closed]

Possible Duplicates: IE6: To support or not to support. Should we support IE6 anymore? I'd hate to (HATE TO) admit it, but there are some people still using this browser. A client of mine ...
26
votes
12answers
37k views

Detect Internet Explorer 6 or below in jQuery

I'm new to jquery and was wondering: is a simple way to detect whether a browser is Internet Explorer 6 or below?
25
votes
8answers
22k views

jQuery form submit() is not working in IE6?

I want to submit a with using jquery as below; $("#formid").submit(); Its working perfect in all browsers except IE6. How to make it work in IE6 ??
24
votes
10answers
27k views

Need a good Internet Explorer 6, 7, 8 standalone [closed]

Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I need recommendations on a good Internet Explorer standalone for Internet ...
24
votes
10answers
4k views

How can I control IE6+jQuery+jQuery-ui memory leaks?

Here's a sample page with a couple datepickers. Here's the Drip result for that: This page leaks indefinitely in IE6sp1 when I click the Refresh button repeatedly (IE6sp3+, Opera 9, Chrome2, and ...
22
votes
11answers
22k views

Internet Explorer 8 and Internet Explorer 6 side by side [closed]

Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine Is there a way to have Internet Explorer 8 and Internet Explorer 6 side by ...
17
votes
4answers
625 views

IE6: Background-Image Load Event

I am displaying a bunch of thumbnail images and the latency can be very high (over a VPN) so I send all the thumbnails in a single file (like a sprite) and set the CSS background-image and ...
17
votes
13answers
7k views

If IE8 is installed, what is the best way to test IE6 and IE7 compatibility?

if IE 8 is installed "by accident" (by the Windows Update program), now the machine has IE 8. Does that mean it is safest to run 2 Virtual PCs, one with IE 6, and one with IE 7 to test our web app?
17
votes
23answers
1k views

What do you wish you knew before you spent hours trying to fix a bug in IE6

Mine would have to be the float and margin bugs... If you float an element, and then specify a margin for it, it will double the margin. The solution to this is to add display: inline to the ...
16
votes
2answers
16k views

IE6 + IE7 CSS problem with overflow: hidden; - position: relative; combo

So I have created a slider for a homepage, that slides some images with a title and teaser text using jQuery. Everything works fine, and I went to check IE and found that IE 6 and 7 kills my slider ...
16
votes
14answers
59k views

IE6/IE7 css border on select element

Does anyone have a solution for styling the borders of "select" elements in Internet Explorer using CSS?
16
votes
3answers
9k views

Use double classes in IE6 CSS?

is there any way to make IE6 understand double classes, say I have a class MenuButton with a color class and possibly a clicked class; like : .LeftContent a.MenuButton {..general rules..} ...
16
votes
38answers
4k views

Should we support IE6 anymore? [closed]

Are we supposed to find workarounds in our web applications so that they will work in every situation? Is it time to do away with IE6 programming?
15
votes
13answers
13k views

Solve the select overlap bug in IE6

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 ...
14
votes
15answers
934 views

Graceful way to tell users of IE7 and below to go away?

TLDR: Tell IE6/7 users to leave in a nice way :) whilst blocking them from all content. Basically I do not need people using IE7/6 lower on my web app. Was thinking of just doing a doc.write after ...
14
votes
9answers
829 views

How is IE7 any better than IE6?

Oftentimes in the web development community, you hear people complaining about developing for IE6. However, if you are developing using a robust JavaScript framework like jQuery, is developing for IE6 ...
14
votes
4answers
15k views

How to preserve aspect ratio when scaling image using one (CSS) dimension in IE6?

Here's the problem. I have an image: <img alt="alttext" src="filename.jpg"/> Note no height or width specified. On certain pages I want to only show a thumbnail. I can't alter the html, so I ...
14
votes
10answers
1k views

IE6 issues with transparent PNGs

I've gotten used to the idea that if I want/need to use alpha-trans PNGs in a cross-browser manner, that I use a background image on a div and then, in IE6-only CSS, mark the background as "none" and ...
13
votes
8answers
1k views

Save me from IE6

I'm getting ready to start work on a new web project for a fairly large corporation. For all their users, something like 17,000 people, they are all stuck with IE6. They plan to have everyone ...
11
votes
1answer
328 views

Which mode is IE6 if doctype is html as HTML5?

If web page has doctype as HTML5. <!doctype html> Which render mode is it for IE6? The document.compatMode tells CSS1Compat. It looks Standard mode, not quirks mode. But, is it true? IE6 is ...
11
votes
10answers
553 views

Internet Explorer 6 and Internet Explorer 7 on same computer for debugging [closed]

Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I recently started a new job and my lead is out sick. He assigned me a bug ...
11
votes
4answers
16k views

How to style <input type=“text”> in IE6 CSS?

Is there any elegant way of applying a certain style to all <input type="text"> elements under IE6? I can do it with some JavaScript, but I was wondering if there was a more elegant way of doing ...
11
votes
18answers
1k views

How are programmers tackling ie6 bugs these days?

I have been using dean edwards ie7/8 script. Not sure if it's my implementation or not but sometimes I would experience ie6 issues that weren't quite fixed or required special handling which meant I ...
11
votes
8answers
6k views

debugging javascript for IE6

firebug is quite useful tool that I can't think myself living without it. I also downloaded the js file that helps you get similar functionality when using IE6 hoping it would help me resolve some ...
11
votes
7answers
14k views

iframe shimming or ie6 (and below) select z-index bug

uhm im not sure if anyone has encountered this problem a brief description is on IE6 any <select> objects get displayed over any other item, even div's... meaning if you have a fancy javascript ...
11
votes
6answers
18k views

How do I get a floating footer to stick to the bottom of the viewport in IE 6?

I know this would be easy with position:fixed, but unfortanately I'm stuck with supporting IE 6. How can I do this? I would rather use CSS to be clean, but if I have to use Javascript, that's not ...
10
votes
2answers
2k views

HTML 5 Doctype and IE 6

I often see this doctype declaration on some pages that I am viewing <!DOCTYPE html> I made some soft research and this is HTML 5 doctype declaration. Modern browsers can interpret this and ...
10
votes
3answers
2k views

Stretching width correctly to 100% of an inline-block element in IE6 and IE7

I have the following markup, where I am attempting to get the right hand side of the second table to align with the right hand side of the heading above it. This works in IE8, Firefox and Chrome, but ...
10
votes
5answers
5k views

Getting an absolute URL from a relative one. (IE6 issue)

I'm currently using the following function to 'convert' a relative URL to an absolute one: function qualifyURL(url) { var a = document.createElement('a'); a.href = url; return a.href; } This ...
10
votes
9answers
6k views

Is there a JavaScript PNG fix for IE6 that allows CSS background positioning?

I've seen a few fixes for allowing PNG images to have transparency in Internet Explorer 6, but I've yet to find one that also allows you to set the background position in CSS. If you use sprites, it's ...
10
votes
5answers
20k views

Which jQuery plugin should be used to fix the IE6 PNG transparency issue?

Is there an IE6/PNG fix that is officially developed by the jQuery team? If not which of the available plugins should I use?
9
votes
12answers
751 views

How To Distract Clients From Using IE6

How can we distract our clients from using IE6. We know IE6 is not a good standard-compliant browsers; has many issues. How to satisfy clients so that they do not use IE6? Thanks...
9
votes
19answers
715 views

Why don't people just stop developing sites to cater to IE6?

I don't understand why developers continue to program things to accommodate IE6. People should update the browser they use, right? I've already seen many firms completely stop developing for IE6, ...
9
votes
2answers
703 views

How viable is ie7-js by Dean Edwards?

I just found out about ie7-js ; IE7 is a JavaScript library to make Microsoft Internet Explorer behave like a standards-compliant browser. It fixes many HTML and CSS issues and makes ...
9
votes
9answers
2k views

List of CSS features not supported by IE6

I just finished slicing and coding a very nice table-less css template for my website, all the time I was testing with IE7 and Chrome. Then I just had the brilliant idea of testing this template with ...
9
votes
10answers
460 views

How much time and effort do you spend on IE6?

I've often read that corporations will save millions once Internet Explorer 6 is finally laid to rest, but reading quotes like that make me wonder just how much time people are spending on IE6 ...
8
votes
2answers
159 views

In what situation would document.open() return null?

I'm trying to understand an intermittent script error that I am seeing in a JavaScript intensive thin-client application running under Internet Explorer 6 and Windows XP. The root cause of the ...
8
votes
1answer
246 views

Is there a standard way of defining the href that opens in a document.open call?

The dilemma that I'm dealing with is that in the jquery-bbq code, because IE6 and IE7 do not support hashchange, they load pages twice in order to have a history state. This has a negative effect ...
8
votes
3answers
199 views

Prevent IE6 visitors

How can I drop the using of IE6 to browse my website ? Something like : if ie6 => die I am using ASP.Net Thanks
8
votes
6answers
277 views

Can anyone recommend an elegant “No IE6 support” script?

I would like to kindly and elegantly tell people who are using internet explorer 6 to either upgrade their browser or smash their computers into tiny pieces when they come to my site.
8
votes
11answers
1k views

One fix for all IE6 problems

Is there a one fix solution for all IE6 problems? One HTC/jQuery file that fixes IE6 problems like PNG, background position, hover, (even) rounded corners... I'm just too tired to look for all fixes, ...

1 2 3 4 5 32