Skip to content

Instantly share code, notes, and snippets.

@AlexMocioi
Created July 16, 2013 22:01
Show Gist options
  • Save AlexMocioi/6015574 to your computer and use it in GitHub Desktop.
Save AlexMocioi/6015574 to your computer and use it in GitHub Desktop.
One time binding event on element
$('#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