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 working on a wordpress theme with ajax load of some content from featured posts that will be displayed on homepage after a click or other trigger on post image.

Basiclly its something like this:

<ul id="posts">
<li class="post">
    <a href="post_url" class="image_link"><img src="images/featured_image.jpg" /><a href="#">
    <a href="#">title</a>
    <div class="ajax_loaded_info"></div>
</li>
<li class="post">
    <a href="post_url" class="image_link"><img src="images/featured_image.jpg" /><a href="#">
    <a href="#">title</a>
    <div class="ajax_loaded_info"></div>
</li>
<li class="post">
    <a href="post_url" class="image_link"><img src="images/featured_image.jpg" /><a href="#">
    <a href="#">title</a>
    <div class="ajax_loaded_info"></div>
</li>
</ul>

The jquery code is like this:

$(".image_link").click(function () {
    $(".ajax_loaded_info").load($(this).attr("href") + " .title");
});

It does success loading the content but it shows the same content (of the last post) for all the posts..

I tried to look for a solution and try some stuff wuthout success.. Hope you guys will help me out in here.

Thanks!!

share|improve this question

1 Answer

up vote 0 down vote accepted

Here you go, a simple sub query with the 'this', doesnt look like much changed, but try it :)

$(".image_link").each(function(){
    $(this).click(function () {
        $(".ajax_loaded_info",this).load($(this).attr("href") + " .title");
    });
})
share|improve this answer
it doesnt work :( maybe the code is misleading.. should i post the real code? – Dvir H Nov 9 '12 at 10:31
Try the updated code, i just tested it by me, works fine – Rikoshay Nov 9 '12 at 10:51
thanks man! it works! :) – Dvir H Nov 11 '12 at 18:46
no problem, remember to mark as answered :) – Rikoshay Nov 11 '12 at 19:48

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.