Results 1 to 3 of 3

Thread: build rollover hyperlink

  1. #1
    Join Date
    May 2010
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default build rollover hyperlink

    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?

  2. #2
    Join Date
    Jul 2008
    Location
    Derbyshire, UK
    Posts
    3,033
    Thanks
    25
    Thanked 599 Times in 575 Posts
    Blog Entries
    40

    Default

    <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>

  3. #3
    Join Date
    May 2010
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    tanx alot

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •