internet-explorer-6

Debugging: IE6 + SSL + AJAX + post form = 404 error

The Setting: The program in question tries to post form data via an AJAX call to a target procedure contained in the same package as the caller. This is done for a site that uses a secure connection (https). The technology used here is PLSQL and the DOJO JavaScript library. The development tool is basically a text editor. Code Snippet: ...

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 other developers toward supporting IE6 on their websites. Of course if your main user base uses IE6 or if you're working for a client that ...

Solve the IE select overlap bug

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. F...

Should we support IE6 anymore?

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? ...

Huge Web App With Memory Leak in IE 6

I have a huge web app that is having issues with memory leak in IE 6. Fixing a memory leak in a 5 line code sample that demonstrates the problem is easy. But if I have a very huge application, where should a start from? ...

Fixed page layout in IE6

Header, footer and sidebars have fixed position. In the center a content area with both scroll bars. No outer scroll bars on the browser. I have a layout that works in IE7 and FF. I need to add IE6 support. How can I make this work? Here is an approximation of my current CSS. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//...

IE CSS Bug - How do I maintain a position:absolute when dynamic javascript content on the page changes

Hi, I have a page where there is a column and a content div, somewhat like this: <div id="container"> <div id="content">blahblahblah</div> <div id="column"> </div> </div> With some styling I have an image that is split between the column and the content but needs to maintain the same vertical positioning so that it lines up. ...

IE 6 CSS Hover non Anchor Tag

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

How long do you think IE6 will survive?

I am pretty sick of IE6, would not want to support it anymore. When do you think its market share will decline to, say, 5%? ...

IE6 and Caching

It seems that IE6 ignores any form of cache invalidation sent via http headers, I've tried setting Pragma to No Cache and setting Cache Expiration to the current time, yet in IE6, hitting back will always pull up a cached version of a page I am working on. Is there a specific HTTP Header that IE6 does listen too? ...

IE6 rending UL's incorrectly

Sometimes IE6 will render the text of a UL list the same color as the background color, if you select it, they show back up, or if you scroll the page up and back down. Its obviously a rendering bug, but I was wondering if anyone knows of a workaround to make it reliable? ...

IE6 and XML prolog

With an XML prolog like ? xml version="1.0" encoding="iso-8859-1"? > and a Doctype like !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> I can get my page to render as expected. However, in IE7 the same page does not render correctly. (a span inside a div does n...

How do I make AutoCompleteExtender render above select controls in IE6

When an AutoCompleteExtender is displayed in IE6 it seems to ignore z-index and renders below any select controls (like dropdownlists) in IE6. <asp:TextBox ID="TextBox1" runat="server" /> <cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="TextBox1" EnableCaching="true" CompletionSetCount="5" ...

Dotnetnuke using PNG images with Transparency

I have a Dotnetnuke site where my main logo is a PNG file using transparency. I tried GIF but the quality wasn't good enough. Anyways it worked great on IE7 but I just saw my site in IE6 and noticed that the transparency isn't working with my logo. Does anyone know of a quick way to fix this in a dotnetnuke portal? ...

File downloads in IE6

I've come across a rather interesing (and frustrating) problem with IE6. We are serving up some server generated pdfs and then simply setting headers in PHP to force a browser download of the file. Works fine and all, except in IE6 but only if the windows user account is set to standard user (ie. not administrator). Since this is for a ...

Disable Specific Keys in IE 6

Hello, I need to disable specific keys (Ctrl and Backspace) in Internet Explorer 6. Is there a registry hack to do this. It has to be IE6. Thanks. Long Edit: @apandit: Whoops. I need to more specific about the backspace thing. When I say disable backspace, I mean disable the ability for Backspace to mimic the Back browser button...

Is it possible to display the entity &#8659; in IE6

is it possible to display ⇓ entity in ie6? It is being display in every browser but not IE 6.I am writing markup such as: <span>&#8659;</span> ...

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? ...

How to prevent IE6 from refetching already-fetched images added via DOM manipulation

If you add a image to your browser's DOM, IE6 will not check its cache to see if it already downloaded the image but will, instead, re-retrieve it from the server. I have not found any combination of HTTP response headers (of the ensuing image request) to convince IE6 that it can cache the image: Cache-control, Expires, Last-modified. ...

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 like the transition from the content on my page to the contents of the IFrame to be seemless, assuming the background colors are consistent. The target bro...