Detect jquery ui popup is closed


/ Published in: jQuery
Save to your folder(s)

mi comment


Copy this code and paste it in your HTML
  1. $('button#editSiteBasicInformation').live('click', function () {
  2. $('#basic_information_form').dialog({
  3. beforeClose: function (event, ui) {
  4. console.log('editSiteBasicInformation closed !!');
  5. }}).dialog("open");
  6. });

URL: http://foo.bar

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.