Skip to content

Instantly share code, notes, and snippets.

@r38y
Last active December 21, 2015 14:49
Show Gist options
  • Save r38y/6322432 to your computer and use it in GitHub Desktop.
Save r38y/6322432 to your computer and use it in GitHub Desktop.
$(document).on 'click', '[data-confirm]', (event) ->
$target = $(event.target)
unless confirm($target.data('confirm'))
event.preventDefault()
return false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment