Advertisement
Guest User

Untitled

a guest
May 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $(document).on('click', 'body .a5', function()
  2. {
  3. console.log($(this));
  4. });
  5.  
  6. event.stopPropagation();
  7.  
  8. $(document).on('click', 'body *', function(event) {
  9. console.log($(this));
  10. event.stopPropagation();
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement