Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help with highlighting

Status
Not open for further replies.

bretttt

Programmer
Jul 23, 2002
74
US
<html>
<span onmouseover=\&quot;somescript\&quot; onmouseout=\&quot;somescript\&quot;>
mouse over</span><BR>
one two three four
</html>

ok if i had that how could i highlight just the word &quot;two&quot;
when mouse is passed over &quot;mouse over&quot;.

Thanks.
if someone could answer that for me, i could make it do what i want it to.
 
<span onMouseover=&quot;this.style.background='#abcdef'&quot; onMouseout=&quot;this.style.background='#ffffff'&quot;>Two</span>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top