mouse over text
thegamerguy
GA
is there a script that can make is so when your mouse goes over any text it changes to a different color?
0
Comments
Anyway...
Try it:
<span onMouseOver="this.style.color = 'red';" onMouseOut="this.style.color = 'black';">This is a test</span>
You don't have to use span. p or h1 or most tags work just as easily:
<p onMouseOver="this.style.color = 'red';" onMouseOut="this.style.color = 'black';">omfghi2u!!!!!1lolorz</p>
<h1 onMouseOver="this.style.color = 'red';" onMouseOut="this.style.color = 'black';">omfghi2u2!!!!!1six</h1>