Reputation: 15455
when you click outside the modal to close it can you hook into any events to run more code?
thanks, rodchar
Upvotes: 1
Views: 707
Reputation: 1085
You have to declare a callback.
var myClose=function(hash) { /* YOUR STUFF */ };
$('#dialog').jqm({onHide:myClose});
Upvotes: 2