Created
December 16, 2021 21:01
-
-
Save somoza/95f04277b5b6b89d1f4bcefdc0e200bc to your computer and use it in GitHub Desktop.
Prevent double clicking on a link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#deleteUrl').one("click", function () { | |
$(this).click(function () { | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment