Mega Code Archive

 
Categories / JavaScript Tutorial / Form
 

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>