I am trying to bind onpaste event to all the elements inside container, using jquery
$('.container').on("paste","*",function(e){});
But on my browser this is not working, and i think now their is no on paste
event exist in jquery,
So i think i must use javascript
$('.container')[0].addEventListener("paste",function(e){});
This works fine but only works for class container , how can i bind this handler to all the future created elements in container
Any idea?