This is a discussion on "[SOLVED] Text rollover" within the JavaScript Forum section. This forum, and the thread "[SOLVED] Text rollover are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
[SOLVED] Text rollover
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
[SOLVED] Text rollover
Hi there,
I have a doubt here, hope you can help me. This is the code: <script> function sw(y,x){ t=document.getElementById(x).style t.visibility=(y=='on')?'visible':'hidden' } </script> <style> #div1,#div2 { visibility:hidden; left: 292px; top: 45px; } </style> <a onmouseover=sw('on','div2')>Show</a> <div id=div2>This is a test.</div> So.. What I want to do is, when I rollover on text another text would appear, and it does. But it stays like that when I move the mouse away from the text, and I wanted the text that appeared to disappear again. Can you help me? I'd appreciate it. Thanks for your time. |
|
|
|
|||
|
Re: Text rollover
Just put an onmouseout value into the anchor tag (<a>). Like this:
Cheers
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
|
|
|||
|
Re: Text rollover
Thanks man that's exactly it, I was trying to do that like:
<a onmouseover="sw('on','div2')">Show</a> <a onmouseout="sw('off','div2')"></a> I didn't know that it could be done in the same.. Appreciate it |
|
|||
|
Re: [SOLVED] Text rollover
No problem. Glad to help
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
|
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Hover over text to rollover an image? | Dapandyman | Web Page Design | 3 | Feb 24th, 2008 08:12 |
| [SOLVED] Image with text -> text with background | alexgeek | Web Page Design | 5 | Nov 13th, 2007 23:25 |
| [SOLVED] css rollover menu help | danny322 | Web Page Design | 7 | Oct 23rd, 2007 13:58 |
| CSS imagemap with text rollover | geoffmuskett | Web Page Design | 32 | Aug 9th, 2006 15:42 |
| Highlight text Box on rollover | timmytots | Web Page Design | 3 | Nov 24th, 2005 21:14 |