Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // BAD: only binds to elements that exist when this runs
- $('.chat-message').on('click', function() { ... });
- // GOOD: binds to a parent that exists and listens for future children
- $('#people-box').on('click', '.chat-message', function() {
- // Your logic here
- });
Advertisement
Add Comment
Please, Sign In to add comment