Oct 8, 2001 #1 Beesknees Programmer Feb 27, 2001 95 GB Can anyone please tell me how to make the text size change when the mouse goes over a hyperlink. I want to use the onmouseover event. Thanks.
Can anyone please tell me how to make the text size change when the mouse goes over a hyperlink. I want to use the onmouseover event. Thanks.
Oct 8, 2001 #2 baad Programmer Apr 10, 2001 1,481 RU may be using different classes ? <a href="some.html" class="cl1" onmouseover="this.className='cl2'">link</a> Victor Upvote 0 Downvote
may be using different classes ? <a href="some.html" class="cl1" onmouseover="this.className='cl2'">link</a> Victor
Oct 8, 2001 #3 chrissyboy Programmer Dec 5, 2000 5 GB Without using classes <a href="6" style="font-size:12" onmouseover="this.style.fontSize=16" onmouseout="this.style.fontSize=12"> Growing</a> Upvote 0 Downvote
Without using classes <a href="6" style="font-size:12" onmouseover="this.style.fontSize=16" onmouseout="this.style.fontSize=12"> Growing</a>