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 want to delay 2 seconds before the anonymous function is called on the mouseenter event. Here is the code that is working perfectly but I want to delay the initial animation or hover by 2 seconds and can't seem to figure it out.

$('div#response div.results').live({

    mouseenter: function() {
        $(this).find('.zoomer').stop('true').css({
            'z-index': '999'
        }).animate({
            "overflow": 'visible',
            backgroundColor: '#fff',
            'width': '274px'
        }, {
            duration: 100,
            easing: 'easeOutExpo',
            queue: false
        });
        $(this).find('img').stop('true').animate({
            "height": "180px",
            "width": "270px"
        }, {
            duration: 1,
            easing: 'linear',
            queue: false
        });
    },

    mouseleave: function() {
        $(this).find('.zoomer').stop('true').animate({
            "overflow": 'visible',
            backgroundColor: '#f7f7f7',
            'width': '164px'
        }, {
            duration: 10,
            easing: 'linear',
            queue: false
        });
        $(this).find('img').stop('true').animate({
            "height": "108px",
            "width": "162px"
        }, {
            duration: 1,
            easing: 'easeOutCirc',
            queue: false
        })
    }
});
share|improve this question
It would help if you gave us the relevant HTML as well. – Blazemonger Sep 9 '11 at 20:48

2 Answers

mouseenter:
       function()
       {
            setTimeout(function(){  
                 //your code
             }, 2000);
        }
share|improve this answer
This didn't work.. – kinsey Sep 9 '11 at 20:43
this should work :P maybe with the emendation of declaring a var $this = $(this) and using that in your current code where you have $(this) – Joseph Marikle Sep 9 '11 at 20:46
Still Didn't work.. It works if I just put alert('test'); but not if I paste in the rest of my code – kinsey Sep 9 '11 at 20:51
put before that setTimeout var $this = $(this) and replace everything $(this) to $this – genesis Sep 9 '11 at 21:12
$(this).find('.zoomer')...delay(2000).animate(...

Use the delay function?

share|improve this answer
This does not work, first thing I tried.. – kinsey Sep 9 '11 at 20:43

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.