jQuery hoverIntent not working, but hover does
Posted
by kylex
on Stack Overflow
See other posts from Stack Overflow
or by kylex
Published on 2010-03-25T20:07:38Z
Indexed on
2010/03/25
20:43 UTC
Read the original article
Hit count: 401
jQuery
|hoverintent
I have the following code:
$(document).ready(function(){
$(".yearInner").hide();
$(".year", this).hover(
function () {
$(".yearInner", this).slideToggle();
}
);
});
It hides the div with class yearInner, and then when the containing div with class year is hovered over, the yearInner div toggles on.
Works fine, put I'd like to use the hoverIntent plug-in instead of hover. Doesn't work at all with hoverIntent. Suggestions?
Div structure for reference:
<div class="year">
2009
<div class="yearInner">
More Info...
</div>
</div>
<div class="year">
2008
<div class="yearInner">
More Info...
</div>
</div>
© Stack Overflow or respective owner