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 have some images (generated elsewhere), that I want to manipulate and enhance using jQuery.

I have a script executing everything I need, except for individual manipulation; my script executes on all elements, not individually. What am I missing?

This is what I have:

Multiple images in this format:

<p>
  <a href="">
    <img src="" />
  </a>
</p>
<p>
  <a href="">
    <img src="" />
  </a>
</p>

jQuery:

  $('p').each(function(){

        //grab img's SRC
        var imgLinkMerge = $('p img').attr('src');

          //find the a tag, change HREF for imgLinkMerge value
          $(this).find('a').attr('href', imgLinkMerge).each(function(){
            //set css BG IMG
            $(this).css('background-image', 'url(' + imgLinkMerge + ')');
          });

        });

share|improve this question
img is inside a. – Bot Mar 8 '12 at 17:08
Can you be more specific about what's happening that's different from what you want? – nicholaides Mar 8 '12 at 17:09
I think var imgLinkMerge = $('p img').attr('src'); on this you might want var imgLinkMerge = $(this).find('img').attr('src'); – Amritpal Singh Mar 8 '12 at 17:09

3 Answers

up vote 4 down vote accepted

With $('p img') you are selecting all img within every p on the page. You want to focus on this p inside the each() loop.

Change this:

var imgLinkMerge = $('p img').attr('src');

to this:

var imgLinkMerge = $(this).find('img').attr('src');
share|improve this answer
and declare var _this = $(this); at the beginning to reuse – Hayden Chambers Mar 8 '12 at 17:12
Thank you both - perfect! Now I understand. – Tony Barnes Mar 9 '12 at 13:35
 $('p').each(function(){

        //grab img's SRC
        var imgLinkMerge = $(this).find('img').attr('src');

          //find the a tag, change HREF for imgLinkMerge value
          $(this).find('a').attr('href', imgLinkMerge).each(function(){
            //set css BG IMG
            $(this).css('background-image', 'url(' + imgLinkMerge + ')');
          });

        });
share|improve this answer

This changing

var imgLinkMerge = $('p img').attr('src');

to

var imgLinkMerge = $('img',$(this)).attr('src');

this will select img using the current context ie the current p

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.