Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q795 When using links that are not underlined, how can I make the underlining appear when using onMouseover?

You are here: irt.org | FAQ | DHTML | Q795 [ previous next ]

Only in Internet Explorer 4:

<STYLE><!--
A {text-decoration: none;}

.underline   {text-decoration: underline;}
.nounderline {text-decoration: none;}
//--></STYLE>

<A HREF="pagename.htm" onMouseOver="this.style='underline'" onMouseOut="this.style='nounderline'">text link</A>

Feedback on 'Q795 When using links that are not underlined, how can I make the underlining appear when using onMouseover?'

©2018 Martin Webb