Skip to content

Instantly share code, notes, and snippets.

@kylefox
Created December 1, 2016 14:14
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 kylefox/cc767957f8ab1519d9f37ccb8d86c6e2 to your computer and use it in GitHub Desktop.
Save kylefox/cc767957f8ab1519d9f37ccb8d86c6e2 to your computer and use it in GitHub Desktop.
$(document).on('click', '.modal button.yes', function() {
console.log('You clicked yes!');
$.modal.close();
});
$(document).on('click', '.modal button.no', function() {
console.log('You clicked no!');
$.modal.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment