opening a link with hover?

My guess would be you would assign an OnMouseOver javascript function to the said link.

like so
Code:
<a href="http://www.somesite.com" OnMouseOver="javascript: myfunction()">Display text</a>

and the function would look something like

Code:
function myfunction() {
window.location = "http://www.somesite.com"
}

I didn't try any of this. You might have to take the HREF out of the A tag.

that's my $0.02

-Sam
 
My guess would be you would assign an OnMouseOver javascript function to the said link.

like so
Code:
<a href="http://www.somesite.com" OnMouseOver="javascript: myfunction()">Display text</a>

and the function would look something like

Code:
function myfunction() {
window.location = "http://www.somesite.com"
}

I didn't try any of this. You might have to take the HREF out of the A tag.

that's my $0.02

-Sam


Yes that would work.

If you want to open a new browser window you can use
window.open("http://www.a.com");
 
Back
Top Bottom