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>