Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a button, when you click this button it dynamically creates a second button. I need to place a click event on to the dynamically created button (second button), which I do, but my click function isn't working.

How can I get my click function to work with dynamically created elements?

share|improve this question
2  
Are you going to show us how you're doing this? – Diodeus Aug 17 '11 at 16:59
Please show your code and error message or specific description of not working. – Thomas Aug 17 '11 at 17:01

6 Answers

up vote 1 down vote accepted

You have to use the jQuery .live() function which can be found here.

Example:

$('button').live('click', function(){
    ...
});
share|improve this answer
Awesome, just what I was looking for! – Dennis Martinez Aug 17 '11 at 17:12

You either need to bind the click event to the second button after it's created. Or use the jQuery Live or Delegate functions.

http://api.jquery.com/delegate/

Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.

Post some code if you need any more help.

share|improve this answer

Here is an example.

Markup:

<button id="create">Create</button>

<div id="container">
</div>

Script:

var count = 0;
$("#create").click(function(e) {
    var num = count += 1;
    var newButton = $("<button>New " + num + "</button>").click(function() {
        alert("Button " + num + " was clicked.");
    });
    $("#container").append(newButton);
});
share|improve this answer

check out jQuery .live()

jQeru .live()

share|improve this answer

you need to attach an event using jqueries live method. It will bind the event to all instances of current and future elements.

$('.classname').live('click', function() {
  alert("triggered");
});

this way the click event is added to all elements with the classname of classname - even if you insert more elements with the same class.

share|improve this answer
<input id="but1" type="button" value="click"></input>
<script>
$(document).ready(function(){
    $('#but1').click(function(){
    var button = $(document.createElement('input'));
        button.attr('id', 'but2');
        button.val('but2');
        button.attr('type', 'button');
        button.click(function(){alert('hello');});

        $(document.body).append(button);

    });

});
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.