Log in

View Full Version : build rollover hyperlink



mostafa_dadgar
05-07-2010, 04:08 PM
hi
i want build hyperlink when mouse rollover goto URL.
I can build hyperlink when click on goto URL but I want build hyperlink when rollover goto URL.
How Can I build?

Beverleyh
05-08-2010, 12:56 PM
<a href="#" onmouseover="javascript:window.open('http://www.ebay.com','_self')">Go to eBay</a>

The second parameter after the URL;
_self = open in same page
_new = open in new page
or use name of target iframe to open in that - example below

<iframe src="news.html" name="my_news" height="300" width="500">

would use;

<a href="#" onmouseover="javascript:window.open('http://www.mywebsite/news.html','my_news')">View News</a>

mostafa_dadgar
05-10-2010, 09:56 AM
tanx alot