Hello
I have a question. I am using a modal dialog from jquery ui. Bellow see the code for open it. When I open all the scrren became unuseable, including the modal window. Can somebody help me on this. Thank you.
- <script type="text/javascript">
- $(document).ready(function ()
{
$(function ()
{
$("#dialog-message").dialog({
dialogClass: "no-close",
autoOpen: false,
modal: true,
closeOnEscape: true,
resizable: false,
buttons: {
Ok: function ()
{
$(this).dialog("close");
}
}
});
});
$('li a[data-hover]').click(function ()
{
$('#dialog-message').dialog('open');
});
- });
</script>