Hide the X in the corner of a JQuery Dialog
Posted by coreycoogan on January 31, 2011
NOTE TO SELF:
Until you find a better way, here’s how you remove the X that closes a JQuery dialog box:
$( ‘a.ui-dialog-titlebar-close’ ).remove();
OR
Change the Style definition in the HEAD.
Robert Mühsig said
There is an option called “modal”.
coreycoogan said
Right you are Robert, but sometimes that doesn’t cut it.