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 got this HTML Code:

<div class="gallery" id="gallery_x"> 
    <p>
        <a href="http://a-dynamic-link.com">image1</a>
        <a href="http://another-dynamic-link-com">image2</a>
    </p>
</div>

(x = variable number)

and I need to get the ID from the .gallery div and apply it to the "a" as a rel just like this:

<div class="gallery" id="gallery_x">
    <p>
        <a rel="gallery_x" href="http://a-dynamic-link.com">image1</a>
        <a rel="gallery_x" href="http://another-dynamic-link-com">image2</a>
    </p>
</div>

my (not working) solution so far is:

$(".gallery a").parents(".gallery").attr("rel", $(this).attr("id"));

I would be glad if someone could help me out.

Thank you.

dee

share|improve this question

2 Answers

up vote 3 down vote accepted
$(".gallery").each(function(){
    $("a", this).attr("rel", $(this).attr("id"));
});
share|improve this answer
This is exactly what I need, thank you! – dee Oct 15 '12 at 14:06

Try this instead:

$('.gallery a').attr('rel', function() {
    return $(this).closest('div').attr('id');
});​
share|improve this answer
There is no this context in the question – billyonecan Oct 15 '12 at 14:08
@billyonecan thanks, you are right.. updated my answer – Michal Klouda Oct 15 '12 at 14:14
np, it was a couple of minutes before I realised myself :p – billyonecan Oct 15 '12 at 14:15

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.