Skip to content

Instantly share code, notes, and snippets.

@marcoala
Created November 29, 2016 18:23
Show Gist options
  • Select an option

  • Save marcoala/68895bdcbf4dc06689015a5a0470b3ed to your computer and use it in GitHub Desktop.

Select an option

Save marcoala/68895bdcbf4dc06689015a5a0470b3ed to your computer and use it in GitHub Desktop.
jQuery - listen for event
//listen on event on an element that is in the DOM when the page load
$('#my_element').change(function(e){
//do stuff
});
//listen on event on an element that is NOT in the DOM when the page, formerly .live()
$(document).on( 'change', '#my_element', function(e) {
//do stuff
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment