Home › Forums › JavaScript › JS off-hover? › Re: JS off-hover?
January 19, 2011 at 4:44 pm
#65202
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
});