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'm trying to add an overlay to a div when the mouse hovers it. Althought it works, the overlay keeps blinking while I move the mouse inside the the div. How can I prevent this?

HTML:

<div id="d4" class="dmc_block" style="width:60%; background:#eee; z-index:1">
    <div style="padding:20px;">
        <p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. </p>
    </div>
</div>

JS:

$('body').on('mouseenter','.dmc_block',function(){
    var o = $(this).offset();
    var h = $(this).height();
    var w = $(this).width();
    $('<div>').addClass('hover').css({width:w,height:h,left:o.left,top:o.top,position:'absolute',zIndex:2}).insertAfter(this);
}).on('mouseleave','.dmc_block',function(){
    $('.hover').remove();
});    
$('body').on('mouseenter','.hover',function(){return false;});

Fiddle: http://jsfiddle.net/T9Lhw/

share|improve this question
Could you please add the relevant code here? Also <blink> FTW! – PeeHaa 埽 Oct 15 '12 at 18:52
3  
use :hover pseudo class instead. – Amareswar Oct 15 '12 at 18:52
1  
Add the code to the question next time please meta.stackoverflow.com/q/118392/186879 – Fabrício Matté Oct 15 '12 at 19:05
I will. Thanks for the info! – Robyflc Oct 15 '12 at 19:36

1 Answer

up vote 4 down vote accepted

Change this:

.on('mouseleave','.dmc_block',function(){

To this:

.on('mouseleave','.hover',function(){

Fiddle

When the overlay .hover is placed above .dmc_block, it triggers the mouseleave of .dmc_block as it is now below the .hover. What you want is the mouseleave of .hover.

share|improve this answer
Thanks a ton, man! – Robyflc Oct 15 '12 at 19:06
You're welcome. =] – Fabrício Matté Oct 15 '12 at 19:06

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.