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'm loading from DB some html (using ajax post request), it looks like:

<div id="slides_control">
   <div>
      <a href="#"></a>
   </div>
</div>

With html I also load JS-code:

<script>
$('#slides_control a').bind('click', function() {
   alert('achtung');
});
</script>

Script goes right after the html (in received data).

But when I click at some link inside new html, I don't see the alert. What's wrong?


I also tried to bind it after ajax ended:

$.post('page.php', {}, function(data) {
    document.write(data);
    $('#slides_control a').bind('click', function() {
       alert('achtung');
    });
});

Didn't help me.

share|improve this question
Can you trace your code with your browser's developer tools to see what executes when you click on an <a> element? – Brian Driscoll May 2 '11 at 14:16

4 Answers

up vote 2 down vote accepted

You probably running bind function before your html has been loaded, so it does not find element

So, put your code to run on dom load:

$(function(){
    $('#slides_control a').bind('click', function() {
       alert('achtung');
   });
}):
share|improve this answer

Try wrapping the jQuery call:

<script>
$(function(){
   $('#slides_control a').bind('click', function() {
      alert('achtung');
   });
});
</script>
share|improve this answer

execute this script when data is loaded. You are executing this script before data is loaded.

share|improve this answer

You can try using live()...

$('#slides_control a').live('click', function() {
   alert('achtung');
});

..but I think Andre has the right idea.

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.