DebugBar Forums
 
 HOME 
 DOWNLOAD 
 BUY 
 DOC / WIKI 
 FORUM 
 CONTACT 
Stay tuned : rss feed

Forum Home


advanced search

You are not logged in.

Announcement

Forums are now closed as we moved them to google groups. You can use the following Google Groups to discuss about DebugBar and IETester products:

#1 2009-11-17 23:42:19

mgutt
New member

Javascript error with IE6 and jQuery

Hi,

I'm using the z-index fix for IE6:

Code:

<!--[if IE 6]>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function() {
    var zIndexNumber = 1000;
    $('div.classname').each(function() {
        $(this).css('zIndex', zIndexNumber);
        zIndexNumber -= 10;
    });
});
</script>
<![endif]-->

You can see it here:
http://www.maxrev.de/t038.html

With IE6 the fix won't work in ieTester. With IE7 it does. But it has to work in both browsers (testet with browsershots.org).

regards

Last edited by mgutt (2009-11-17 23:43:16)

Offline

 

#2 2009-11-18 08:08:24

fabrice
DebugBar Support

Re: Javascript error with IE6 and jQuery

Hi,

I don't see any difference between real IE6 and IE6 tab under IETester. Your demo page looks like a menu but sub menus are opened and nothing is changing on the page, looks like a static page.

Can you describe what I should see under the real IE6 and under IE6/IETester ?

Looks like the same on my side.

Offline