PDA

View Full Version : help !! onmouseover link script


Lentini
11-16-2002, 08:53 AM
i have this script <a ONMOUSEOVER="window.location='http://www.blabla';" href="http://www.blabla" >ENTER</a>

but the link needs to open in a new window... i tried targer=blank but this didn't work

anyone knows how i can get this working ??

:confused: :confused: :confused:

PeepNTom
11-16-2002, 11:34 AM
this should help you....


<a href="http://www.barbie.com" onMouseOver="window.status='http://www.barbie.com'; return true" onMouseOut="window.status=''; return true" target="_blank">ENTER</a>

Sureal
11-16-2002, 11:52 AM
You have to use Target="_blank" not Target="blank"