jquery add event to dynamically created element

How to Add an Event to a Dynamically Created Element in jQuery

Have you ever created an element dynamically using jQuery and then struggled to add an event to it? If so, you're not alone. Fortunately, there are a couple of ways to solve this problem.

Method 1: Event Delegation

Event delegation is a technique that allows you to attach an event handler to a parent element and then have it execute for all matching child elements, even if they are added dynamically. Here's how to do it:


// Attach the click event handler to the parent element
$('#parent-element').on('click', '.child-element', function() {
  // Do something when the child element is clicked
});
  • $('#parent-element') is the parent element to which the event handler is attached.
  • '.child-element' is the selector for the child element(s) that will trigger the event.
  • function() { ... } is the code that will be executed when the child element is clicked.

By attaching the event handler to the parent element, you ensure that it will apply to any matching child elements, regardless of whether they were created dynamically or not.

Method 2: Bind the Event After Creating the Element

If you don't want to use event delegation, you can also wait until after the element has been created and then bind the event directly to it. Here's how:


// Create the element
var $newElement = $('
  • $('', { ... }) creates a new <div> element with the specified properties.
  • appendTo('#container') appends the new element to an existing element with the ID of #container.
  • $newElement.on('click', function() { ... }) binds the click event directly to the new element.

By waiting until after the element has been created, you can be sure that it exists and is ready to be bound to an event.

So, there you have it - two ways to add an event to a dynamically created element using jQuery. Choose the one that works best for your situation and start coding!

Subscribe to The Poor Coder | Algorithm Solutions

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
[email protected]
Subscribe