I'm building an image gallery and have been able to get the clicked thumbnail image to be loaded in the main #large div a new src for the tag. I'm trying to get the rel attribute also, in order to populate the rel attribute in the tag.

Here's my code...

$(document).ready(function() {
    $('a.thumbnail').live("click", function() {
        $('#large').hide();
        $('#project-image').css('background-image', "url('/assets/images/ajax-loader.gif') no-repeat");

     //   var i = $('<img />').attr('src',this.href).load(function() {

        var i = $('<img />').attr({    
        src: this.href,
        rel: MISSING REL SELECTOR

        }).load(function() {




            $('#large').attr('src', i.attr('src'));
            $('#large').attr('rel', i.attr('rel'));
          $('#project-image').css('background-image', 'none');
            $('#large').fadeIn();
    });

        return false; 
    });
});

What's the proper selector to load the rel attribute in the i array?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Maybe you need a

$(this).children('img').attr('rel')

in place of your MISSING REL SELECTOR

link|improve this answer
no luck… I still get the original rel attribute in the loaded image – Milksamsa Nov 23 '11 at 22:35
does the $('a.thumbnail') contain the rel attribute you need?, or is it maybe an img inside the $('a.thumbnail')? a working example might be useful :P – Jaibuu Nov 23 '11 at 22:43
oh, I see that those $('a.thumbnail') do not have rel tags, maybe you want to add the title attrs instead? ( for the ones that have it, some dont ) as in $(this).attr('title') – Jaibuu Nov 23 '11 at 22:47
I would prefer to get the rel element... I can populate all of them... test with the 1st and 4th thumbnails, as they have rel attributes.... – Milksamsa Nov 23 '11 at 22:51
show 5 more comments
feedback

I think you want:

rel: this.attr('rel')
link|improve this answer
unfortunately it seems to break the .loading function, as the image gets opened in a blank window... – Milksamsa Nov 23 '11 at 22:19
feedback

I think you want to use $(this).attr('rel'), and not simply this.attr('rel').

link|improve this answer
no luck... the .loading function won't break, but I the rel attribute won't update – Milksamsa Nov 23 '11 at 22:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.