Area.search : Area : HTML Tags JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » HTML Tags » Area »

 

Area.search










Syntax








document.links[num].search



The search property contains the search string specified in the URL, including the leading question mark (?).

This property is a read/write string.












<html>
    <body>
    <form name="question">
    <input name="carType"
           type="radio"
           checked
           onClick="updateLinks('A')">A<br>
    <input name="carType"
           type="radio"
           onClick="updateLinks('B')">B
    </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=="A")
        document.links[0].search="?query=A";
      if(car=="B")
        document.links[0].search="?query=B";
    }
    -->
    </script>
    </body>
    </html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo HTML Tags
» Area