Forums

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

Home Forums JavaScript Text color fade on hover with jQuery? Re: Text color fade on hover with jQuery?

#48905
eagleworks
Member
$(".yourclass").hover(function(){
$(this).toggleClass("activeclass");
return false;});