myobj.hover(functionIn, functionOut);For example
myobj.hover(function(event) { myobj.addClass('myhover'); }, function(event) { myobj.removeClass('myhover'); });Usually this is better done with css.
myobj.hover(functionIn, functionOut);For example
myobj.hover(function(event) { myobj.addClass('myhover'); }, function(event) { myobj.removeClass('myhover'); });Usually this is better done with css.