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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I have an anchor in a page. I want

Status
Not open for further replies.

ravula2000

IS-IT--Management
Mar 8, 2002
205
0
0
US
I have an anchor in a page. I want to increase the font size when mouse is over that anchor. How to write the code
for mouseover and mouseout events..?

<a href='abc.html' onmouseover=>
<a href='abc.html' onmouseout=>


Thanks

 
<style type=&quot;text/css&quot;>
.movrStyle {font-size:16px}
.moutStyle {font-size:10px;}
</style>

<a href=&quot;&quot; onmouseover=&quot;this.className='movrStyle'&quot; onmouseout=&quot;this.className='moutStyle'&quot;>HOME</a> ....:::::.... xxLargeWASP ....:::::....
 
onmouseover=&quot;this.style.zoom+=1.1&quot;
onmouseout=&quot;this.style.zoom-=1.1&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top