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.

here is the site : http://www.notrepanorama.com at the bottom left, i use a jquery plugin to make a slideshow from the flickr stream the plugin is not mine, and i cannot chage the code (encoded), so i like to capture the click event and make anyclick href to open in a new windows after the list of image is done

it's base on this code : http://api.flickrshow.com/v7/

or How to bind the click event AFTER absolutely syre the images are all loaded ?

share|improve this question

1 Answer

up vote 1 down vote accepted
$("#flickrbox-fs-w").click(function(){ console.log(this)}); 

worked for me in firebug console. If you want to be sure that all IMAges are loaded use window onload.Images are external non dom elements like iframe / video etc .. document.ready() won't tell you if they are loaded

http://www.think-lamp.com/2010/09/jquery-accessing-iframe-data-and-the-shortcomings-of-document-ready/

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.