How to display jQuery Dialog on top of YouTube Video/SlideShare PPT?
- by Gopinath
We use jQuery modal dialog box to get confirmation from users before they delete an item. The modal dialog works fine as long as there are no YouTube videos on the screen.
If there is a YouTube video the dialog box is displayed beneath the video. I tried changing the z-index of dialog to 3999, but no use. (I don't know much about CSS)
$('#dialog').dialog({
autoOpen: false,
modal: true,
width: 300,
zindex:3999,
buttons: {
'Ok': performDelete_dialog,
'Cancel': function(){$(this).dialog('close');}
}
});
Can some one suggestme what should we do to place jquery dialog box on top of YouTube videos?