You are here: irt.org | About | Feedback | 489 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q120
Sent by
Bonnie on September 30, 1999 at 10:24:20:
Worth:
Very worth reading
Length:
Too long
Technical:
Too technical
Comments:
In response to the question, "Is it possible to highlight the text of a link using onMouseOver?", I've seen a apparently less complicated set of code, however, it only appears to work in IE 5. Is there any where to hook it up to a JavaScript function or access the NN DOM to get it to work in NN as well? Thanks!
<style>
A.on: {color:#FF00FF;
font-size: 12pt;
text-decoration: underline;}
A.off: {color:#0000CC;
font-size: 12pt;
text-decoration:none;}
</style>
and then, inside each link:
<a href="#whatever"
class="off"
onMouseOver="this.className='on'; return true"
onMouseOut="this.className='off'; ;return true">Some Text</a>
Other feedback on 'irt.org FAQ Knowledge Base Q120' - show all