vote up 0 vote down star

Very simple example: http://jsbin.com/ohude

Click button1, the 'hello2' text p should change z-index to 89. Click button2, the z-index should change yet again. This is obvious in firebug. But it doesn't do jack in IE8.

Can someone confirm?

Thanks.

flag

2 Answers

vote up 0 vote down check

I don't have IE8 and do not know jQuery code.

Were you trying to change the text viewed, or only the z-index? If the z-index AND the text viewed, it was a no-go in Safari.

For my test I altered your original jQuery-styled functions to:

  1. alert to your original change (note that style.zIndex, rather than z-index); and
  2. then changed the text nodeValue to reflect the z-index change.

At first, I change your css to css('zIndex','89') to see if that altered the results. Either way css('zIndex'...) or css('z-index'...), worked for me.

As I said, I don't know jQuery. But after testing the following snippet in IE8, if it doesn't work, try changing the css arg to 'zIndex', just for grins.

TEST:

$('#click').click(function () {
        $('#hello').css('z-index','89');
        var pid = document.getElementById('hello');
    	alert('pid.style.zIndex: ' + pid.style.zIndex);
    	pid.firstChild.nodeValue = "Hello2 " + pid.style.zIndex;
    }); 

  $('#click2').click(function () {
        $('#hello').css('z-index','10');
        var pid = document.getElementById('hello');
    	alert('pid.style.zIndex: ' + pid.style.zIndex);
    	pid.firstChild.nodeValue = "Hello2 " + pid.style.zIndex;
    }); 


});

Sorry to mess up your JQuery code. :D

link|flag
vote up 1 vote down

The Elements that you're trying to set z-index on in your test page don't have CSS "position" set, so changing the z-index won't actually work.

Adding position:relative; or position:absolute; CSS properties should allow you to set their z-indixes.

link|flag
OK, position set: jsbin.com/ewola Still doesn't work as far as I see. – Roger May 20 at 21:35
I don't have IE8 installed but try this: $('#hello')[0].style.zIndex = 89; – J-P May 21 at 7:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.