Skip to main content
added 4 characters in body
Source Link
Tushar
  • 86.9k
  • 21
  • 162
  • 181

.click.click events only work when element gets rendered and are only attached to elements loaded when the domDOM is ready.

.on.on events are dynamically attached to domDOM elements, which is helpful when you want to attach an event to domDOM elements that are rendered on ajax request or something else (after the domDOM is ready).

.click events only work when element gets rendered and are only attached to elements loaded when the dom is ready.

.on events are dynamically attached to dom elements, which is helpful when you want to attach an event to dom elements that are rendered on ajax request or something else (after the dom is ready).

.click events only work when element gets rendered and are only attached to elements loaded when the DOM is ready.

.on events are dynamically attached to DOM elements, which is helpful when you want to attach an event to DOM elements that are rendered on ajax request or something else (after the DOM is ready).

Post Undeleted by Ramesh kumar
Post Deleted by Ramesh kumar
Source Link

.click events only work when element gets rendered and are only attached to elements loaded when the dom is ready.

.on events are dynamically attached to dom elements, which is helpful when you want to attach an event to dom elements that are rendered on ajax request or something else (after the dom is ready).