| View previous topic :: View next topic |
| Author |
Message |
Logan Wildman
Joined: 18 Oct 2005 Posts: 1
|
Posted: Tue Oct 18, 2005 5:51 am Post subject: how do i put a on mouse hover display page. |
|
|
am trying a site for some of my colleages
need to get info abt this
have got the script for getting the link set up but now i need to create the text on it. which would read after hovering the mouse over it
Ask the customer to <a onMouseover="javascript:poptxt(2);" onMousemove="javascript:showpop(2);" onMouseout="javascript:hidpop();" style="cursor:help"><u>isolate </u></a> the USIM & see if the issue replicates.<br> |
|
| Back to top |
|
 |
|
|
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3642 Location: Sweden
|
Posted: Tue Oct 18, 2005 8:31 am Post subject: Re: how do i put a on mouse hover display page. |
|
|
Hi and welcome to DEVPPL.
Do you mean like this?
| Code: |
| <a href="hej.php" title="Text">JAAA</a> |
|
|
| Back to top |
|
 |
dafunkymunky 100+ Club

Joined: 08 Apr 2005 Posts: 180 Location: India
|
Posted: Thu Oct 20, 2005 2:04 pm Post subject: Re: how do i put a on mouse hover display page. |
|
|
| for links it'll be "title" for images it'll be "alt" |
|
| Back to top |
|
 |
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3642 Location: Sweden
|
Posted: Fri Oct 21, 2005 12:56 am Post subject: Re: how do i put a on mouse hover display page. |
|
|
| dafunkymunky wrote: |
| for links it'll be "title" for images it'll be "alt" |
The alt-text is shown when the image can't be shown. To use this on an image, use:
| Code: |
| <a href="#" title="1111"><img src="image.jpg" /></a> |
Or just:
| Code: |
| <img src="image.jpg" title="22222" /> |
|
|
| Back to top |
|
 |
|