|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hide target link
I want to put a link on Page A that will redirect people to Page C, but through Page B. Page B is just a tracking site that automatically redirects to another site, so I want Page C to be what is displayed when you mouse over the link. Is there a way to do this?
Link on Page A: <a href="Page B" target="_blank">Link name</a> How can I make Page C be seen on mouse over, or at least hide Page B from being displayed? |
|
#2
|
|||
|
|||
|
RE: Hide target link
You can use a bit of javascript in your <a> tag to change the text displayed in the status bar:
<a href="Page B" target="_blank" onmouseover="window.status='page C';">Link name</a> |
|
#3
|
|||
|
|||
|
RE: Hide target link
That seemed like it would work, but it still shows Page B on mouse over. It's a link that would go in your AIM profile if that makes any difference. Help!
|
|
#4
|
|||
|
|||
|
RE: Hide target link
Sorry, I missed a vital bit - the return command.
You might also want the mouse out bit to clear the status bar when they move the mouse off the link. <a href="Page B" target="_blank" onmouseover="window.status='page C';return true;" onmouseout="window.status='';return true;">Link name</a> |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Hide target link |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|