Mega Code Archive

 
Categories / JavaScript Tutorial / HTML Tags
 

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="rntsoftMap">       <area name="car"             coords="1,1,48,48"             href="http://www.rntsoft.com"             target="_top">     </map>     <img src="http://www.rntsoft.com/style/logo.png" align="top" height="50"   width="50" usemap="#rntsoftMap">     <hr>     <script language="JavaScript">     <!--     function updateLinks(car)     {       if(car=="LAMBORGINI")         document.links[0].href="http://www.rntsoft.com";       if(car=="FERRARI")         document.links[0].href="http://www.rntsoft.com";     }     -->     </script>     </body>     </html>