Skip to content

Instantly share code, notes, and snippets.

@annelyse
Created June 18, 2021 10:05
Show Gist options
  • Save annelyse/d2b2df0fe11f475ebc84550f0247d043 to your computer and use it in GitHub Desktop.
Save annelyse/d2b2df0fe11f475ebc84550f0247d043 to your computer and use it in GitHub Desktop.
Selectionner un element apres qu'il ai été crée en js appen cibler le document et pas l'élément directement
$(document).on('click','.tooltip-close',function(){
//your code here
alert('test');
});
document.addEventListener('click', function (e) {
if (e.target.className === 'tooltip-close') {
e.target.parentElement.remove();
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment