Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to bind an onclick event to an element I insert dynamically with jQuery

But It never runs the binded function. I'd be happy if you can point out why this example is not working and how I can get it to run properly:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"        
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da" lang="da">
    <head>
      <title>test of click binding</title>

      <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>
      <script type="text/javascript">


    jQuery(function(){
      close_link = $('<a class="" href="#">Click here to see an alert</a>');
      close_link.bind("click", function(){
        alert('hello from binded function call');
        //do stuff here...
      });

      $('.add_to_this').append(close_link);
    });
      </script>
    </head>
    <body>
      <h1 >Test of click binding</h1>
      <p>problem: to bind a click event to an element I append via JQuery.</p>

      <div class="add_to_this">
        <p>The link is created, then added here below:</p>
      </div>

      <div class="add_to_this">
        <p>Another is added here below:</p>
      </div>


    </body>
    </html>

EDIT: I edited the example to contain two elements the method is inserted to. In that case, the alert() call is never executed. (thanks to @Daff for pointing that out in a comment)

share|improve this question
1  
Your example page runs fine when I tested it in FF 3.5 – Daff Oct 6 '09 at 13:49
@Daff Unfortunately you're right! Then I have apparently extracted the part of my code that actually works. Thanks for pointing that out! – Jesper Rønn-Jensen Oct 6 '09 at 13:54
@Daff, I edited the example so it containts two places to insert the method. Then it really stopped working :) – Jesper Rønn-Jensen Oct 6 '09 at 14:01

5 Answers

up vote 13 down vote accepted

The first problem is that when you call append on a jQuery set with more than one element, a clone of the element to append is created for each and thus the attached event observer is lost.

An alternative way to do it would be to create the link for each element:

function handler() { alert('hello'); }
$('.add_to_this').append(function() {
  return $('<a>Click here</a>').click(handler);
})

Another potential problem might be that the event observer is attached before the element has been added to the DOM. I'm not sure if this has anything to say, but I think the behavior might be considered undetermined. A more solid approach would probably be:

function handler() { alert('hello'); }
$('.add_to_this').each(function() {
  var link = $('<a>Click here</a>');
  $(this).append(link);
  link.click(handler);
});
share|improve this answer

How about the Live method?

$('.add_to_this a').live('click', function() {
    alert('hello from binded function call');
});

Still, what you did about looks like it should work. There's another post that looks pretty similar.

share|improve this answer
you are right that it actually worked. my mistake. So I have edited the question. – Jesper Rønn-Jensen Oct 6 '09 at 14:06
Yeah, this sort of problem is exactly what live events are intended to solve. – Powerlord Oct 6 '09 at 14:18
The problem is not related to live events though in this case a live event would solve it. The answer provided by Daff also solves the problem, and does it without adding the new concept of live events to the equation – Jesper Rønn-Jensen Oct 6 '09 at 14:25
I may also add, that currently, this would be the de-facto way of binding events. So today, I would also use live() in favor of bind(). – Jesper Rønn-Jensen Jun 24 '11 at 7:04
17  
live() is now deprecated in favor of on() link – TrophyGeek Jan 9 '12 at 22:15
show 1 more comment

All of these methods are deprecated. You should use the on method to solve your problem.

If you want to target a dynamically added element you'll have to use

$(document).on('click', *selector-to-your-element*, function() {
     //code here ....
});

this replace the deprecated .live() method.

share|improve this answer
2  
Your answer is correct and I'm upvoting it. Don't forget to mention that at the time the question was asked, 'on' was not present in jQuery. – jbl Oct 1 '12 at 13:35
What is the expected syntax for *selector-to-your-element* ? – MonoThreaded May 20 at 17:17

Consider this:

jQuery(function(){
  var close_link = $('<a class="" href="#">Click here to see an alert</a>');
      $('.add_to_this').append(close_link);
      $('.add_to_this').children().each(function()
      {
    	$(this).click(function() {
    		alert('hello from binded function call');
    		//do stuff here...
    	});
      });
});

It will work because you attach it to every specific element. This is why you need - after adding your link to the DOM - to find a way to explicitly select your added element as a JQuery element in the DOM and bind the click event to it.

The best way will probably be - as suggested - to bind it to a specific class via the live method.

share|improve this answer
Thanks for answer, Daff. It can't be true that I can only add event listeners to elements in DOM. However, i will for now change my code to do that. (should be no problem as I just add special css class for the links added). – Jesper Rønn-Jensen Oct 6 '09 at 14:18
Yeah you are right it's not the DOM (it actually works with a single one), sorry. But I found out, too, that binding to dynamically created elements seems to be pretty annoying, as long as they are not selectable by a distinct jQuery selector. – Daff Oct 6 '09 at 14:34

I believe the good way it to do:

$('#id').append('<a id="#subid" href="#">...</a>');
$('#subid').click( close_link );
share|improve this answer
I can't use #id to add to element, because I want to do this for many elements. See the updated code example :) – Jesper Rønn-Jensen Oct 6 '09 at 14:13

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.