Is there a ModalPopup equivalent in jQuery user interface?

Is there an ASP.NET ModalPopup equivalent in jQuery user interface?

+3
source share
4 answers

I'm not sure about ASP.net implementation, but jQuery DEFINITELY has these types of popups.

Here is your main popup: http://jqueryui.com/demos/dialog/
Here is a list of plugins that are specially modal popups: http://plugins.jquery.com/search/node/modal

+9
source

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

$( ".selector" ).dialog({ modal: true });

IMO, jQuery UI , ASP.Net( ASP.Net).

+4

Source: https://habr.com/ru/post/1767722/


All Articles