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.

Possible Duplicate:
jQuery Ajax wait until all images are loaded

//var imgURL="http://xxxx.xxx:8084/xxx/largedynamicimagethattakestime
FB.api(
    '/me/photos', 
    'post', 
    {
        message:' coffee',
        url: imgURL        
    }, 
    function(response) {
        if (!response || response.error) {
            alert('Error occured'+response.error);
        } 
        else {
            //...........
        }
    }
);

I want to launch this fb.api call only when var imgURL completes loading. is there any way so that I can load this image in a div and make a call to fb.api only when the image gets completely loaded? providing a button with image to post this images is also welcomed .

share|improve this question

marked as duplicate by ᾠῗᵲᄐᶌ, Kate Gregory, Linger, Peter O., JaredMcAteer Dec 11 '12 at 17:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You need to listen for the image's onload event:

var image = document.createElement("img");
image.onload = function() {
    // Call API
};

image.src = "http://a57.foxnews.com/global.fncstatic.com/static/managed/img/Scitech/660/371/tardar-sauce-the-cat.jpg";

document.body.appendChild(image);
share|improve this answer

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