Good Resources udemy.com/blog/jquery-popup-window/
Category: Dialogs
Examples(2)
Using a dialog more than once
Instantiate the dialog with autoOpen set to false http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/
Yes Cancel Dialog Box
Resources http://jqueryui.com/demos/dialog/#modal-confirmation A Nice And Simple Dialog Box Add the following to your HTML page. At the top somewhere (Doesn't have to be in the head) <!– JQUERY UI –> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/smoothness/jquery-ui.css" type="text/css" media="all" /> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js" type="text/javascript"></script> <!– div element used for confirmation and other dialogs –> <div id="dialog-confirm" style="display:none;"></div> <!– –> The […]