document on click dynamic element
$(document).on('click', '.class', function() {
// do something
});
document on click dynamic element
$(document).on('click', '.class', function() {
// do something
});
javascript bind event to created element
// bind click handler to element that is added later/dynamically
document.addEventListener('click', function(e){
if(e.target && e.target.id== 'myDynamicallyAddedElementID'){
//do something
}
});
//Alternatively, if your using jQuery:
$(document).on('click','#myDynamicallyAddedElementID',function(){
//do something
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us