So here is my basic structure. It doesn't work in IE, any suggestions? Does IE not work well with jPlayer status?
<div id="videodiv">
<img src="poster.jpg">
<div id="video">jPLayer stuff here</div>
<button></button>
</div>
<style>
#videodiv{position:relative;}
img{z-index: 30; visibility:visible; position:relative;}
#video{z-index: 25; position:absolute; top:0px;}
button{z-index: 40; position:absolute;}
</style>
<script>
play: function (event) {
$parent.find('img.poster').css("z-index", "20");
$parent.find('img.poster').css("visibility", "hidden");
}
</script>