DEV Community

Discussion on: Bind to Dynamically Added Elements with jQuery

Collapse
 
jonrandy profile image
Jon Randy 🎖️

You haven't actually binded to the new elements at all, rather you are using event delegation to handle the events further up - via event bubbling/propagation. No binding changes

Collapse
 
nightwolfdev profile image
nightwolfdev

Handle events might have been better than saying bind. Thanks!