Set font size with form control : Form Demo « Form Control « JavaScript DHTML






Set font size with form control

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

      sze = document.form1.sizeList.options[document.form1.sizeList.options.selectedIndex].text;
      txt = txt.fontsize(sze);

      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" />
      Size:
      <select name="sizeList" size="1">
        <option selected="selected">1</option>
        <option>2</option>
        <option>3</option>
        <option>4</option>
        <option>5</option>
        <option>6</option>
        <option>7</option>
      </select>
    <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 color with form control
9.Change string to big, bold, fixed with form control
10.Change string to italics, small, strike 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