internet-explorer-6

CSS Layout and IE 6

Looking back at Stackoverflow podcast with Litmus (Podcast 78). The podcast discussed briefly the browser incompatibilities and quirks, especially with IE6 (a claim echoed everywhere). Litmus solution is to render the page in all the different browsers and look for differences. However, I wonder how much incompatibility can be detecte...

forcing IE8 browser display a website in IE6 standards mode

Hi, there are document compatibility modes for all versions of IE browsers, but none for IE6. why is it like that? how can I make IE8/IE7 browser display a website in IE6 standards mode? other than changing the code to use conditional statements for different browsers, or different websites altogether, is there any easier or better sol...

IE6 nowrap and floating problem

This is driving me nuts... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title></title> <style type="text/css"> .cantWrapper { white-space: nowrap; } .cantWrapper .floatedDiv { float...

Error opening an Excel file with IE6

I have a test webpage with: %response.ContentType="application/vnd.ms-excel" I put it on two seperate sites and I can open it from IE6 on one site, but not the other. I will get a "can not open xxx file" error message after I click Open on the file download popup. If I use firefox or IE8, I don't have this problem. And IE6 works fin...

is there a way to change the jquery datatable filter behavior

with a moderm browser, the jquery datatable plugin works very well but in ie6 i find that its almost impossible to type in teh filter textbox as the keypress filtering is insanely slow so the browser can't keep up with your typing. is there anyway to change the behavior so that it only searches and filter on enter key compared to every ...

single javascript (library) to fix all IE 6 issues and make it compatible with css3

Is there any Javscript (library) or any other solution, through which we can fix most of IE6 issues like png fix and also make IE6 to support CSS3 properties? ...

Help with layout problems in IE

I am having some problems getting this layout to work properly in IE (both 6 and 7). It, of course, works fine in Safari and Firefox. What's going on here: I have a footer which is fixed to the bottom of the viewport, or under content - whichever is longer. I have a header above the content which contains a number of centered and flo...

innerHTML causes IE6 to (permanantly) lock up

On a site I am working on I load up a series of images which can be animated using some controls I implemented w/javascript. Everything works just fine in all browsers but IE6 which locks up and never recovers; at least not w/in the 15min I let it sit there. The part it is choking on is a portion where I try to modified the contents of...

IE javascript redirection

I have a javascript function which redirects user to a diff page. It goes like this... redirect : function(url) { if(!url) return false; alert(url); if (this.browserClass.isW3C) //IE 6.X comes here { window.location.href = url; } else if(this.browserClass.isIE4) { window.location.href...

_fb_fromhash screws up links on ie6 in facebook app

When I navigate within my Facebook Application on IE6, Facebook appears to re-append the base URL to the end of the actual URL (sometimes). I am at times submitting a form, otherwise I attempt to paginate a photo gallery whereas the &p= is the only part I really want to change. Facebook appears to append _fb_fromhash among other facebook...

Span doesn't align with h1 in ie6

I have inside a div, one h1 tag followed by a span tag which are one next to the other, but the span is floating to the right. It works in firefox, chrome, and internet explorer 7 and 8, but not in ie6. In ie6 the h1 tag is bigger for no reason, so the span tag stays bellow it. Heres the code: <div style="width: 740px; float:left...

jQuery too fast for IE6? (Odd issue resolved by adding alerts?)

IE6 is always surprising me but this one is REALLY odd. I'm creating a horizontal menu where I need the text in each 'button' to be vertically centered. Easy in any browser except IE. So, for IE browsers, I'm using a bit of javascript to add the necessary padding to each button to make sure the text appears centered. I got this working...

What changed in firefox 3.6 to make <ul>'s render differently?

Edit (Solution Discovered) Thanks everyone for your help on this. The problem was an error in one of the lines of CSS that was being included (it's a large project with a huge combined CSS file so it was hard to spot). This was the problem line: background:transparent url(sf-pager.gif') repeat-x scroll bottom; Notice the missing apos...

IE6 problem: when the last insert table row is deleted, the width of second cell of first table row became 0

I'm sorry that I can't find a property title of my problem. I wrote a simple web page and some javascript to insert table row and delete it. Now my problem is when I delete the last inserted row, the second cell of the first table row's width became zero in IE6. Anyone can give me some advice? Great thanks. <html> <head> <meta http-equi...

Text is scaling on IE6 even without % and em from View > Text resize function of IE6? see example?

Text is scaling on IE6 even without % and em from View > Text resize function of IE6? but on this page http://jitendravyas.com/ nothing is specified in % and em but text is scaling with - View > Text resize function of IE6? Why? Does IE 6support text resizing? ...

Internet Explorer line 1 char 1 code 0 error

I'm using jQuery+drupal and some jQuery plugins. All is ok with Firefox. But in IE's i'm receiving problem like this. Line: 1 Char: 1 Error: object expected URL: http://businessway.am I have included .js files. How to know where is the problem? In which file? Line 1? Which file? If you can please check site which I gave before. ...

How to space some DIVs in columns without a <br />

I'm trying to have two or more columns worth of DIVs for input elements in a form. It's a very complex form, and some elements will be hidden and shown depending on some answers. The problem is I can't get the DIVs to space accordingly in IE6 while having an effective hide/show. This is what mostly works: .first_column { float:left; ...

Javascript Execute After Page Render IE6

I am having trouble with some JavaScript running before the page is completely rendered in IE 6 (maybe other versions too but just testing IE6 for now. Firefox seems to be OK). I can get around this by calling the js on window.onload like this: window.onload = function(){doIt();} However, my concern is the fact that I will overwrite...

Script causes IE6 to fallover with no error

I hate IE6, in fact I wish microsoft would force out a patch that killed the damn thing stone dead. The following script works fine in IE > 6 & FF,WebKit(chrome etal) without issue; any ideas? (function getElementsByClass(searchClass) { node = document; tag = '*'; var els = node.getElementsByTagName(tag); ...

2 div are coming horizontally in same in all except IE6? how to solve?

2 divs are coming horizontally in same in all except IE6? but in IE 6 second div is falling under first div. both div has fixed width and float:left this is code of container div #home2colContainer {margin-top:40px;overflow:hidden;width:1000px;} this is for first div #home2colLeftColContainer {float:left;margin-left:20px;width:675px...