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

Q1793 How do I make an explanation appear when my mouse pointer hovers over a word?

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

You need to make the word a link.

Code for IE4+ and possibly NS6

<style>
.txt {
   color:green;
   text-decoration:none;
   cursor: default
}
</style>
<body>
I <a href="#" onClick="return false"
title="hate" class="txt">dislike</a> you
<br>I <a href="#" onClick="return false"
title="admire" class="txt">respect</a> you

Submitted by michel

©2018 Martin Webb