Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript JS off-hover? Re: JS off-hover?

#65037
Vinnix
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!