|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
Mouse-over problem
I've created a form which people fill in text boxes. Beside each text box is a Help link to tell them what info should go into each box.
What I want to do is have this Help link as a mouse-over and have the help text appear in the next cell of the table ie textbox - helplink - magically appearing help text Has anyone any ideas??? Cheers |
|
#2
|
|||
|
|||
|
A very easy solution could be:
<a href="somelink.html" title="Your help text">Text</a> Don't know if you make the text appear in the next cell as you ask for, perhaps with javascript? |
|
#3
|
|||
|
|||
|
you could use the following code
<a onMouseOver="document.help1.innerHTML = 'help text here';" onMouseOut="document.help1.innerHTML = '';">help</a> <span id='help1'></span> |
![]() |
| Viewing: Dev Articles Community Forums > Programming > Programming Tools > Mouse-over problem |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|