Create a link with value in form controls : Form Demo « Form Control « JavaScript DHTML






Create a link with value in form controls

   

<html>
<head>
  <script type="text/javascript">
    function showWindow(){
      var txt = document.form1.stringField.value

      if (document.form1.hypertext[0].checked){
        txt = txt.link(document.form1.jumptoField.value);
      }else{
        if (document.form1.hypertext[1].checked){
          txt = txt.anchor(document.form1.jumptoField.value);
        }
      }
      document.write(txt);
    }

  </script>
</head>
<body>
  <form method="post" name="form1" action="null">
      Text:
      <input type="text" size="20" maxlength="256" name="stringField" />
      <input type="radio" name="hypertext" value="Link" checked="checked" />
      Link:
      <input type="radio" name="hypertext" value="Anchor" />
      Anchor:
      Jump To:
      <input type="text" size="30" maxlength="256" name="jumptoField" />
    <input type="button" name="Show" value="Show" onclick="showWindow()" />
  </form>
</body>
</html>

   
    
    
  








Related examples in the same category

1.Computes the french VAT and amounts including all taxes, and converts a currency into Euro
2.A one of everything HTML form
3.JavaScript Loan Calculator
4.Greeting card genertor
5.Online test
6.Searchengine MS IE
7.Collapsing Forms
8.Set font size with form control
9.Set font color with form control
10.Change string to big, bold, fixed with form control
11.Change string to italics, small, strike with form control
12.Change string to subscript and superscript with form control
13.Passing the form Object as a Parameter
14.Passing a Text Object (as this) to the Function