Area.href : Area : HTML Tags JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » HTML Tags » Area »

 

Area.href










Syntax








document.links[num].href



The href property contains the entire URL specified by the HREF attribute of the tag.

This property is a read/write string.












<html>
    <body>
    <form name="question">
    <input name="carType"
           type="radio"
           checked
           onClick="updateLinks('LAMBORGINI')">Lamborgini<br>
    <input name="carType"
           type="radio"
           onClick="updateLinks('FERRARI')">Ferrari
    </form>
    <map name="java2sMap">
      <area name="car"
            coords="1,1,48,48"
            href="http://www.navioo.com"
            target="_top">
    </map>
    <img src="http://www.navioo.com/style/logo.png" align="top" height="50"   width="50" usemap="#java2sMap">
    <hr>
    <script language="JavaScript">
    <!--
    function updateLinks(car)
    {
      if(car=="LAMBORGINI")
        document.links[0].href="http://www.navioo.com";
      if(car=="FERRARI")
        document.links[0].href="http://www.navioo.com";
    }
    -->
    </script>
    </body>
    </html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo HTML Tags
» Area