Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

is it possible to do MouseOvers to display text

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi,

I want to be able to mouse over an image and have "hidden" text appear (ie, same color as bgcolor, once mouseOver, change text or bgcolor), which is located in a table below.

Is this possible?

P.S. Any good sites out there for intermediate programmers wanting to learn JavaScript?

Thanks,
G
 
What you could do is have the required text in a layer and have that layer hidden. Then use a mouseover event to make the layer visible. Mise Le Meas,

Mighty :)
 
One way to do it. Drop this in a form. The link could be anywhere.

<img border=&quot;0&quot; src=&quot;file:///C:/Icw/Images/black_cancel_query.gif&quot; width=&quot;34&quot; height=&quot;34&quot; onmouseout=&quot;document.all.dummylink.innerHTML=''&quot; onmouseover=&quot;document.all.dummylink.innerHTML='test'&quot;>    
<a name=&quot;dummylink&quot; href=&quot;&quot;></a>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top