Skip to content

Instantly share code, notes, and snippets.

@pcote
Created October 6, 2016 22:30
Show Gist options
  • Save pcote/092f64e0a2b883b3fc8e9fec298f5bee to your computer and use it in GitHub Desktop.
Save pcote/092f64e0a2b883b3fc8e9fec298f5bee to your computer and use it in GitHub Desktop.
// delegate event handling example.
$(".table").on("click", ".saveButton", saveButtonHandler);
var saveButtonHandler = function(evt){
var btn = this;
id = btn.getAttribute("id");
// do whatever else that needs be done with respect
// this particular button.....
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment