See this comment from jquery-ui
// Ignore z-index if position is set to a value where z-index is ignored by the browser
// This makes behavior of this function consistent across browsers
// WebKit always returns auto if the element is positioned
I see that jquery’s zIndex() returns 0 if the element is position: static.
Isn’t z-index supported on position:static? (It works for me in Chrome, haven’t tested cross-browser)
Because
position: staticmeans “Ignore all the positioning instructions fromleft,top,z-index, etc.”.— http://www.w3.org/TR/CSS21/visuren.html#z-index
— http://www.w3.org/TR/CSS21/visuren.html#positioned-element