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 trying to make a jquery thumbnail gallery using images that are pulled from an instagram account.

This function collects all the photo info from the instagram api:

function createPhotoElement(photo) {
if ((photo.caption) !== null){var photo_content = photo.caption.text +  "  - 
     else {        var photo_content = " "      }
  return $('<div>')
    .addClass('instagram-placeholder')
    .attr('id', photo.id)
    .append(
      $('<a>')
       // .attr('target', '_blank')
        .addClass('image')
        .attr('href', photo.images.standard_resolution.url)
        .attr('rel', photo.images.standard_resolution.url)

        .append(
          $('<img>')
            .addClass('thumb')
            .attr('src', photo.images.standard_resolution.url)
        )
    );
}

It's basically a large main image, surrounded by thumbnails. And when you click one of the thumbnails, it replaces to large image with the thumbnail clicked.

The large image html is this:

<div id="image"><img src="[MAIN IMAGE URL]" border="0"/>
</div>              

And the thumbnails pulled from instagram just get looped in this:

<div class="instagram"></div>

Using this jscript, I'm trying to replace the img source of the static img, [MAIN IMAGE URL], with the img src for the thumbnail that you click:

<script type="text/javascript">
$(function() {
$(".image").click(function() {
var image = $(this).attr("rel");
$('#image').hide();
$('#image').fadeIn('slow');
$('#img').attr('src', image);

return false;
});
});
</script>

For some reason, it's not working when the images are pulled from instagram. It just loads the image in the browser, bypassing inserting it into the #image div. It works fine when using static images, however. Any help?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.