tags:

views:

58

answers:

1

hey all,

when you click outside the modal to close it can you hook into any events to run more code?

thanks, rodchar

+1  A: 

You have to declare a callback.

var myClose=function(hash) { /* YOUR STUFF */ };

$('#dialog').jqm({onHide:myClose});
laurentb