Created
July 16, 2013 22:01
-
-
Save AlexMocioi/6015574 to your computer and use it in GitHub Desktop.
One time binding event on element
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
$('#divLeduriComunicatie').one('cancel_GenerarePDF', function() { | |
... | |
}); | |
Asta înseamnă că la primul event de tipul ăla, se va executa funcția și se va face automat și unbind, asta e bine că nu mai uiți să faci unbound! | |
http://api.jquery.com/one/ | |
the handler is removed after the first time the event occurs at the delegated element |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment