Home › Forums › JavaScript › JS off-hover? › Re: JS off-hover?
January 20, 2011 at 11:39 pm
#65037
Member
Hey,
So something to consider using the .each() in jQuery like
$(‘div.aside li’).each(function(){
//Whatever code your using for each call
})
Sounds like you want a mouse out event? So if they don’t select anything (or the mouse leaves) Returns to default text?
Grab the container and do a mouse Leave Event
$(“div.aside”).mouseleave(function(){
//Display default infomationz
});
Hope this helps
-Vinny
ps.- I’m in CO!