Last active
November 21, 2017 20:32
-
-
Save DCCoder90/52d2181e90bf01665cfa8e7c13684123 to your computer and use it in GitHub Desktop.
jQuery Select change snippets
This file contains hidden or 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
$(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