i have used to get the jquery dialog and it is also works fine, but i don't want to give the user option to close it since i close it pragmatically .
following is the code to pop up the dialog
<div id="emailNotification" title="Email Notification">
<p>Please Wait Email is being sent....</p>
</div>
and this is how i close;
$("#emailNotification").dialog('close');
There is close option at the right side which i don't want, how to disable this in jquery.
Please help