Guest User

s1

a guest
Apr 11th, 2025
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // BAD: only binds to elements that exist when this runs
  2. $('.chat-message').on('click', function() { ... });
  3.  
  4. // GOOD: binds to a parent that exists and listens for future children
  5. $('#people-box').on('click', '.chat-message', function() {
  6. // Your logic here
  7. });
Advertisement
Add Comment
Please, Sign In to add comment