User:Mono

From Wikimedia Foundation Governance Wiki
Revision as of 00:45, 2 October 2012 by Mono (talk | contribs)

<html>

This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.

<script> mw.loader.using(['jquery.ui.dialog'],['jquery.ui.button'], function () {

   $( '#dialog' ).dialog({

autoOpen: false, modal: true, } ); });

$( "#create-user" ) .button() .click(function() { $( "#dialog" ).dialog( "open" ); }); });

</script> <button id="create-user">Open The Dialog</button>

</html>