Created
July 16, 2013 22:10
-
-
Save brailateo/6015629 to your computer and use it in GitHub Desktop.
jQuery: Bind pe un buton pentru lansarea o singură dată a unei proceduri ("Salvare document", "Abandon")
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
$('#btnSalvare').one("click", function() { | |
// chestii ... salvare, etc | |
// va fi apelat o singură dată, dublu-click nu merge | |
... | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment