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 .