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 can't use load() features in this jQuery because it appears Google Gadgets doesn't allow them. Upon mouseover and focus of #items a, an external image loads in #info div. So far I use this to fetch external data:

$(function() {
      $('#items a').live('mouseover focus', function() { // When mouse hovers over item
       var id = $(this).attr('id').replace(/#/, ''); // Retrieve its ID
      $.data(this, 'timer', setTimeout(function() {
       $('#info img').fadeOut('slow').attr('src', itemInfo[id][0]).fadeIn('slow');
        }, 500)) // Set the image if focus is longer than milliseconds
        }).live('mouseout blur', function() {
        clearTimeout($.data(this, 'timer'));
       return false;
});});

fadeOut() works well. I just want the fadeIn() to start after a new external image is loaded. The problem now is that fadeIn() kicks in before a new image is loaded and in doing so it fades in the previously loaded image. Also, the fade effects currently do not sync with the images already loaded in cache. What am I missing here?

share|improve this question
you should improve your accept rate. – AlvinfromDiaspar Jul 27 '12 at 18:24
I don't know why, but for the few times I submitted here, I couldn't accept anything, it wouldn't let me. – DaNCh Jul 27 '12 at 18:48

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.