ie6-bug

IE6 float <img>

Sometimes in a floated div. IE6 does not display tags, however it does space the image correctly, and when you right click the image it gives correct details like size and file size. It just does not display the image: <div style="float:left"> <img src="one.gif" /> </div> <div style="float:left"> <img src="two.gif" /> </div> ...

this div to cover up the viewport works perfect on IE 7, 8, FF, Chrome, and Safari, but why not IE 6?

this div to cover up the viewport works perfect on IE 7, 8, FF, Chrome, and Safari, but why not IE 6? http://www.0011.com/css/test/cover_up/i4.html I thought IE 6 breaks if it is position: fixed but not absolute? (on IE 6, the div is only 1 line tall). ...

How to detect if a user is running IE 6?

I need to be able to tell if a page is being viewed in IE 6. How can I do this in javascript while ignoring version like 7, 8, or other browsers? ...

Jquery + click + image swaps + IE6 = I hate that browser

I am having an issue with swapping images in IE6. Works fine in all browser except that one. Here is the following code: $(function() { $("#image1").click(function() { $(this).attr('src', '/v12/images/small/sm-wall-1-on.png'); $('#image2').attr('src', '/v12/images/small/sm-wall-2.png'); $(...

jQuery IE6 click problem

Is there any reason why the click doesn't work in IE6 on the following JQuery code? See ...$('#toggleVAT').click(function... It works in IE7 and FF? function switchButton(to){ if(to === 'INC'){ $('#toggleVAT').removeClass("exc"); $('#toggleVAT').addClass("inc"); $('#toggleVAT em').text("inc."); } else { $('#toggleVAT').addCl...

Scrolling DIVs in IE6 with CSS

I've been writing a small notice board site in ASP.NET and nothing i do will make it work properly in IE6. The main page has a header DIV, with the content region below it. Within this region are three further regions, a search facility in the top left, a list of notices below it, and the currently displayed notice to the right of these ...

IE6 float sidepanel bug

Hi, Im trying to fix a bug that only appears in internet explorer 6. The problem is that the side panel moved below the footer of the page in Ie6. Can anybody help? http://www.perfectclaims.com/houses4cash/ie6.php ...

DropDown problem while Mouse Scroll in IE 6

Hi, I have asp.net dropdown displayed in a page. When i open the page in IE6 and do a mouse scroll, the dropdown gets displayed very weird. i.e. The dropdown does not get displayed properly. After a bit of research i came to know that its a bug in IE 6. Is there any solution for this problem? Can anybody help me out with the problem ASA...

IE6 bugs! side panel

My right side navigation is pushed down to the bottom on the page for some reason in IE6 but its only on my blog pages! Am I right in thinking its somthing to do with the sidepanels width? http://bradburyembroidery.com/houses4cash/blog/ ...

Dojo Table not Rendering in IE6

I'm trying to use Dojo (1.3) checkBoxes to make columns appear/hide in a Dojo Grid that's displayed below the checkBoxes. I got that functionality to work fine, but I wanted to organize my checkBoxes a little better. So I tried putting them in a table. My dojo.addOnLoad function looks like this: dojo.addOnLoad(function(){ var che...

IE6 Unit PNG fix + Javascript Swap Image not working

Hi Everyone, I am using Unitpngfix for IE6 PNG Transparency. Everything moves fine. Now i need to implement a menu button in png to swap when mouse over. I used dreamweaver "Add Behaviors > Swap Image". It generates a java script code. Swap Image Script: function MM_preloadImages() { var d=document; if(d.images){ if(!d.MM_p) d.MM_p=...

Blurry text after scrolling in IE6

Hi all, i've got an issue with text in IE, when the page loads the text looks neat and crisp, but when i double-click on some white space of the page the text looks like this: Is there a known solution for this problem? Thanks ...

Difference between IE6 versions

Whats the difference between version 6.00.2800 and 6.00.2900 of Internet Explorer 6? Can anyone confirm different CSS rendering between IE6 SP1, SP2, SP3 ? Should I browser test my pages across different Service Packs? ...

jQuery's mousemove does not fire on blank div in ie6.

I have some divs with just a width, height, and border. I am using: $(".the_divs").bind("mousemove",function(ms){ do_stuff(this); }); My divs do not have any background css set (so you can see what is behind them). However, ie6 only fires the mousemove event when the mouse is over the border of the div. So, if you quickly move th...

Hovering <a> in CSS without href

I need a picture to change upon hovering over it. I got that working in CSS by changing the z-index upon hovering over it. However, I don't want anyone to click on it. Thus, I have removed the href from the tag. I have heard that this is a problem for IE6, however I have read that such is within the specifications of even XHTML, which i...

jqZoom IE 6,7 (8?) bug

If on this product page you click on the second or third thumbnail, while using IE 6 or 7, the zoom function breaks. I think when you view the error in IE7 you can understand a little better what's going wrong. But to tell the truth, I have no clue what's going wrong O_o Again, opera, safari, chrome, ff no problemo, whyyyyyyyyy ...

IE 6 Bug: float: none -> borders disappear

Hi, i have a class let's call it cell, .cms-block .cell{ width:520px; float:left;} .cms-block.wide .cell{width: auto; float:none} in IE 6, the child elements of .cms-block.wide .cell loose their borders/background colors. if I take away the float:none; the borders are there. but... the cell is floating left. argh. I looked around an...

IE6 crash when using HttpWebRequest and Css

My web application is Asp.NET 2.0 and in one page, i'm using HttpWebRequest to load some content into a container page. This works well within Firefox, IE7/8, Safari but it crashes IE6. It hangs or shuts down. The content page i'm trying to read is called tmp.html and if i call it directly (using IE6) then it seems ok. The html code ins...

float:left and margin-left issue in ie6 and 7

Please have a look at my ieissue pic, http://img230.imageshack.us/i/ieissue.gif/ When I float first div to left and set the second div with margin-left:220px. It is working very well with FF and IE8, yet IE6 and 7 not working at all. My second div collapses and sit right at right bottom of frist div. Here is HTML markup: <ol id="listin...

Controls bleeding within iframe on scroll in IE6

I have content in an iframe, and when I scroll the main page (outside of the iframe), I get weird artifacts inside of the iframe, from the select and flash controls, in IE6. How it should look (and does look in IE6 before scrolling the outer page): How it looks after scrolling the outer page in IE6: It works fine in other browsers...