Created
September 3, 2018 11:28
-
-
Save baladkb/51034db62159a8c83ad2208fc6efae90 to your computer and use it in GitHub Desktop.
How to apply onclick function for dynamic class's and id's ?
This file contains 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
<input type="checkbox" class="ck_filter"> | |
$(document).ready(function() { | |
$(document).on( 'click', '.ck_filter', function () { ... }); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment