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.
$('#cart > .heading a').bind('mouseenter', function() {
    $('#cart').addClass('active');


    $.ajax({
        url: 'index.php?route=checkout/cart/update',
        dataType: 'json',
        success: function(json) {
            if (json['output']) {
                $('#cart .content').html(json['output']);
            }
        }
    });         

    $('#cart').bind('mouseleave', function() {
        $(this).removeClass('active');
    });
});

I need to delay the removeClass on mouseleave. Can I simple add a this.delay line?

share|improve this question
A bit of advise: instead of mouseenter, mouseleave use .hover(..., ...) – Tarkus Jun 5 '11 at 0:26

2 Answers

up vote 2 down vote accepted

You could just use setTimeout()

$('#cart').bind('mouseleave', function() {
    var $that = $(this);
    setTimeout(function(){$that.removeClass('active');}, 500); //500 millisec delay
});
share|improve this answer
Worked perfectly. – RPM Jun 5 '11 at 0:31
$('#cart > .heading a').hover(function() {
    // clear the previously defined timeout if any
    clearTimeout($(this).data('timeout'));
    $(this).addClass('active');
    // do other stuff here
}, function() {
    // set timeout and save it in element's state
    // so it could be removed later on if needed
    var e = $(this).data('timeout', setTimeout(function() {
        e.removeClass('active');
    }, 3 * 1000)); // 3 sec.
});

This way .removeClass('active') will take action only if mouse is located outside of the element.

share|improve this answer
this will not be the element inside the timeout. – James Montagne Jun 5 '11 at 0:49

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.