Click to See Complete Forum and Search --> : A Java Script Function


sridhar
02-07-2003, 05:48 AM
Sir,
Iwant a javascript function wherein when i keep the mouse over a link i want a particular file to be opened.

Please do the needful.

Thanking you.

Sridhar

sridhar
02-07-2003, 05:54 AM
Sir,
Iwant a javascript function wherein when i keep the mouse over a link i want a particular file to be opened.

Please do the needful.

Thanking you.

Sridhar

Charles
02-07-2003, 06:28 AM
I think that the enquirer is referring to something like:

<a href="http://www.w3.org/" onclick="return false" onmouseover="window.location = this.href">W3C</a>

or

<a href="http://www.w3.org/" onclick="return false" onmouseover="window.open(this.href, 'child')">W3C</a>