I have displaying video using video tag, if user pause the video I am display some option top of video tag using div, all the click event and z-index work properly on all browser in desktop, but some how I didn't find any solution for iPad that the quicktime player and div z-index always getting auto even I have already change the css programmatically but no luck on iPad
$("#video_screen").bind("pause",function(){
$("#video_screen").css("z-index","-1");
$("#videoOptionsDiv").show();
alert("Seek Time:"+$("video").attr("currentTime")+" ms");
$("#notif").slideDown("fast");
alert("video "+$("#video_screen").css("z-index"));
alert("optionaction "+$("#optionActions").css("z-index"));
});
this is my code and work for desktop browser only