Hover text in HTML (defined only once) help?!?

Trizoy

VIP Member
Hello

I am trying to make some initials in a Schedule hover to show the person name.

The problem is I only want to define the hover command in one place.

For example:

I have 30 "TT" listed on a single page, and I have it defined in ONE place. All "TT's" will be hovered by this single command...

Any ideas?
 
Good. :D

You could use JavaScript but I think that would be more work than it's worth as you would have to name all the span tags.

document.getElementById("hovertext1").setAttribute("title","TT")
 
Back
Top