Forums

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

Home Forums JavaScript jQuery Help – .hover Event Isn’t Triggering Re: jQuery Help – .hover Event Isn’t Triggering

#98968
Senff
Participant

You forgot some quotes and ID signs in your jQuery. Change:

$(#accountball).hover(function(){

to:

$('#accountball').hover(function(){

And the same for the other two hover functions.