Skip to content

Instantly share code, notes, and snippets.

@kartick14
Created April 19, 2018 08:20
Show Gist options
  • Save kartick14/d84c6a709ee08903a2471b588f5cf6f4 to your computer and use it in GitHub Desktop.
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
$(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