All pastes #2106515 Raw Edit

Anonymous

public javascript v1 · immutable
#2106515 ·published 2012-01-26 16:23 UTC
rendered paste body
Instantiating jQuery dialog:<script type="text/javascript">         jQuery(document).ready( function(){               var $dialog = $('<div id="diving"></div>')                .dialog({                         height: 350,                        modal: true,                        position: 'center',                        autoOpen:false,                        overlay: { opacity: 0.5, background: 'black'}                        });                }        );</script>Calling dialog:<button id="opener" onClick="$('#diving').dialog('option', 'title', 'Dialog Title' ); $('#diving').html(pepe).dialog('open');">Open the dialog</button>