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

I have a click handler that reads the href attribute of an a tag and loads the new content via ajax. The function returns false so it doesn't follow the href url. This works once, but each time thereafter, the function does not appear to get called and the content is not loaded asynchronously, but instead follows the link in the browser.

$ ("document").ready( function () {
          $(".post_update").click( function () {
              $("#dashboard_content").html(ajax_load).load($(this).attr('href'));
              return false;
          });
});

<a href="{{ path('post_update', {"id":post.id}) }}" class="post_update">Edit</a>
share|improve this question
What is ajax_load? – ShankarSangoli Jul 24 '11 at 2:28
Is .post_update inside #dashboard_content? – mu is too short Jul 24 '11 at 2:29
ajax_load is just the string "Loading..." and .post_update is inside #dashboard_content, yes – ThinkingInBits Jul 24 '11 at 2:31
What is this "{{ path('post_update', {"id":post.id}) }}" going to do? – ShankarSangoli Jul 24 '11 at 2:31
That's just a twig function that prints out a URL in the format localhost/web/app_dev.php/post/update/7 – ThinkingInBits Jul 24 '11 at 2:33

2 Answers

up vote 3 down vote accepted

you should not use document as a string its an object itself try the belwo code.

Since the link is inside dashboard container you should use live in this case.

$(document).ready( function () {
          $("a.post_update").live('click',  function () {
              $("#dashboard_content").html(ajax_load).load($(this).attr('href'));
              return false;
          });
});
share|improve this answer
I changed it so document isn't a string, but this still only works the first time. – ThinkingInBits Jul 24 '11 at 2:32
Try now I have edited my answer, I didnt knew the link is inside the container. – ShankarSangoli Jul 24 '11 at 2:33
Thanks man. The .live did the trick. – ThinkingInBits Jul 24 '11 at 2:36
Kool I am glad I it helped solve your problem. – ShankarSangoli Jul 24 '11 at 2:38

If .post_update is inside #dashboard_content, the problem is that the element to which the event handler was bound, is now gone. The simplest solution, is to use the jQuery.live method. So your code would look like:

$(document).ready(function () {
    $(".post_update").live("click", function (e) {
        $("#dashboard_content").html(ajax_load).load($(this).attr('href'));
        return false;
    });
});
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.