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!

Naming Link And Highlighting it

Status
Not open for further replies.

bretttt

Programmer
Jul 23, 2002
74
US
if i have this
<a href=\&quot;domain\&quot; name=\&quot;hname\&quot;>LINK</A>

i need to maake a javascript function cause the link to highlight yellow
 
Use CSS:

Code:
<style type=&quot;text/css&quot;>
a:hover
{
     color: #000000;
     background-color: #FFFF00;
}
</style>[code]

Hope this helps,

Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top