jQuery("#X").css("z-index");
はWebkitブラウザで常に「auto」を返します。 Firefox上で動作します。WebkitブラウザでjQueryを使用してz-index値を読み取り設定する
また、あなたのようなものでZインデックスを設定することができないことが表示されます:jQuery("#X").css("z-index",5);
テストケースは、次のとおりです。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery CSS Z-index Fail</title>
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#X").css("z-index",5);
$("#Y").append($("#X").css("z-index"));
});
</script>
<style type="text/css">
h1 {z-index: 3;}
</style>
</head>
<body>
<h1 id="X">Some Text</h1>
<div id="Y"> Z-index is: </div>
</body>
</html>