Radio action : RadioButton Radio : Form Control JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Form Control » RadioButton Radio »

 

Radio action



<html>
<head>
  <title>GUI Example</title>
  <script type="text/javascript">
  <!--
    function fsearch(aForm){
      alert ("search");
    }
    function foptions(aForm){
      alert ("option");
    }
    //-->
  </script>
</head>
<body>
  <h3>
    My search form
  </h3>
  <hr>  <form>
    Find:
    <input type="text" name="tfield" size="40">
    <br>
    <input type="radio" name="search">
    Simple Search
    <br>
    <input type="radio" name="search">
    Extended Search
    <br>
    <input type="button" name="bsearch" value="Search" onclick="fsearch(this.form)">
    <input type="button" name="boptions" value="More options" onclick="foptions(this.form)">
  </form>
</body>
</html>


           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Form Control
» RadioButton Radio