Anyone know how to get the z-index of a div tag that returns the actual number and not 'Auto'?
- by Derrick
This gives me auto: I need the number, so I can move one above the other?
// Swop div index
$("#panel div").each(function(){
alert($(this).css('z-index'));
});