After applying the plug-in to my container div as i have done below i am opening the modal win on an event. The window is opening perfectly other browsers then IE7. In IE7 its opening the container of my navigation tab also where i am currently. I have checked the markup its also uniformed in terms of tags placement. Any one can help me out of the bug.
$('#popup-content').modal({onOpen: function (dialog) {
dialog.overlay.fadeIn('slow', function () {
dialog.data.hide();
dialog.container.fadeIn('slow', function () {
dialog.data.show();
});
});
},
onShow: function (dialog) {
},
onClose: function (dialog) {
dialog.data.fadeOut('slow', function () {
dialog.container.slideUp('slow', function () {
dialog.overlay.fadeOut(function () {
$.modal.close();
});
});
});
},
persist:true
});
Thanks in advance.