What is the exact difference between live()
and ready()
?
Edit: found that die()
is the opposite of live()
.ready()
lets you register a callback that fires when the DOM is ready - this is similar to using window.onload
but fires earlier (and you can register more than one callback).
.live()
lets you register a callback to a range of events based on a selector, which continually monitors the DOM and will register itself to new nodes that are added.
live is used for attaching events to a current selector and all future matching selectors.
ready binds a function to be executed whenever the DOM is ready to be traversed and manipulated
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With