I want this:
http://jqueryui.com/demos/dialog/#modal-message
to happend when you click on ClickMe.
how to do this?
Using the jQuery UI Dialog, in $(document).ready(...) do:
$(document).ready(...)
$('div.thedialog').dialog({ autoOpen: false })
to create the dialog and
$('#thelink').click(function(){ $('div.thedialog').dialog('open'); });
to open it.