Skip to content

Instantly share code, notes, and snippets.

@DCCoder90
Last active November 21, 2017 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DCCoder90/52d2181e90bf01665cfa8e7c13684123 to your computer and use it in GitHub Desktop.
Save DCCoder90/52d2181e90bf01665cfa8e7c13684123 to your computer and use it in GitHub Desktop.
jQuery Select change snippets
$(document).ready(function(){
//For static content
$('#selectID').change(function(){
//Do stuff!
});
//For dynamically loaded content:
$(document).on('change','#selectID',function(){
//Do stuff!
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment