Change string to italics, small, strike with form control : Form Demo « Form Control « JavaScript DHTML






Change string to italics, small, strike with form control

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

      if (document.form1.italicsBox.checked) txt = txt.italics();
      if (document.form1.smallBox.checked) txt = txt.small();
      if (document.form1.strikeBox.checked) txt = txt.strike();

      objWindow = window.open("", "","width=600,height=300");
      objWindow.document.write(txt);
      objWindow.document.close();
  }
  </script>
</head>
<body>
  <form method="post" name="form1" action="null">
      String:<input type="text" size="40" maxlength="256" name="stringField" />
      Style:
      <input type="checkbox" name="boldBox" value="ON" />Bold
      <input type="checkbox" name="fixedBox" value="ON" />Fixed
      <input type="checkbox" name="italicsBox" value="ON" />Italics
      <input type="checkbox" name="smallBox" value="ON" />Small
      <input type="checkbox" name="strikeBox" value="ON" />Strike
    <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 subscript and superscript with form control
12.Create a link with value in form controls
13.Passing the form Object as a Parameter
14.Passing a Text Object (as this) to the Function