Click to See Complete Forum and Search --> : text script needed


teammatt3
06-28-2003, 05:40 PM
I am looking for a script that will make text bigger on a mouseover, if you could give me a simple script for that, it would be great:)

Khalid Ali
06-28-2003, 05:46 PM
<span style="font-weight:normal" onmouseover="this.style.fontWeight='bold'" onmouseout="this.style.fontWeight='normal'">Some Text</span>

Njoy

pyro
06-28-2003, 05:47 PM
How about this:

<span onmouseover="this.style.fontSize='150%';" onmouseout="this.style.fontSize='100%';">test</span>

[edit- lol... same time ;)]

teammatt3
06-28-2003, 05:52 PM
thanks