Skip to content

Instantly share code, notes, and snippets.

@dvnguyen
Created May 7, 2015 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvnguyen/b046090ada79c2941746 to your computer and use it in GitHub Desktop.
Save dvnguyen/b046090ada79c2941746 to your computer and use it in GitHub Desktop.
Un-focuses buttons on jQuery Dialogs
// Example: On click of wizard submission button
$('#wizardSubmission').click(function() {
$modalConfirmQuestionnaireSubmission.dialog('open');
$('.ui-dialog :button').blur(); // un-focuses buttons once the dialog has opened
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment