Created
April 19, 2018 08:20
-
-
Save kartick14/d84c6a709ee08903a2471b588f5cf6f4 to your computer and use it in GitHub Desktop.
Use event delegation for dynamically created elements: When element create after ajax success
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).on("click", '.mylink', function(event) { | |
alert("new link clicked!"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment