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?

#65202
JediN1nja
Participant

I don’t know if this will help, because I am pretty much a JQuery noob as well.
But if I understand you correct, try this:

$("#button").hover(function() {
//insert hover state
}, function() {
//insert non-hover state
});