Style JavaScript Tutorial

< html>

  
    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();
  }
  


  
      String:
      Size:
      
        1