Oct 8, 2001 #1 Beesknees Programmer Joined Feb 27, 2001 Messages 95 Location 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 Joined Apr 10, 2001 Messages 1,481 Location 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 Joined Dec 5, 2000 Messages 5 Location 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>