4

Whar are equivalent cross-browser solutions for window.showModalDialog? showModalDialog introduced in IE and FF 3.

Ahmed Atia
  • 17,848
  • 25
  • 91
  • 133

3 Answers3

2

Natively I think there are none. But there are lots of UI toolkits that provides such functionality, such as jQuery-UI, the dojo toolkit and also the Yahoo-UI.

Pablo Cabrera
  • 5,749
  • 4
  • 23
  • 28
1

As of the asp.net tag: the ajax control toolkit has an ModalPopupExtender. Maybe this one is yours.

http://www.asp.net/ajax/

Arthur
  • 7,939
  • 3
  • 29
  • 46
-1

jQuery UI provides dialogs and in this you can have a modal dialog also. Check out this

http://jqueryui.com/demos/dialog/#modal

You can set the modal option to be true to get the modal dialog. See options section in this page.

$('.selector').dialog({ modal: true });
rahul
  • 184,426
  • 49
  • 232
  • 263