Style JavaScript Tutorial

< html>

  
    function showWindow() {
      var txt = document.form1.stringField.value;
      var clr = "";
      clr = document.form1.colorList.options[document.form1.colorList.options.selectedIndex].text;
      txt = txt.fontcolor(clr);
      objWindow = window.open("", "","width=600,height=300");
      objWindow.document.write(txt);
      objWindow.document.close();
  }
  


  
      String:
      Color:
      
        black