Source Code for Our String-Formatting Script : String « Language Basics « JavaScript DHTML






Source Code for Our String-Formatting Script

  

<html>
<head>
  <title>String Object Formatting</title>
  <script language="JavaScript1.1" type="text/javascript">
  <!--
    function showWindow() {
   
      var txt = document.form1.stringField.value;
      var clr = "";
      var sze = "";
   
      if (document.form1.bigBox.checked) txt = txt.big();
      if (document.form1.blinkBox.checked) txt = txt.blink();
      if (document.form1.boldBox.checked) txt = txt.bold();
      if (document.form1.fixedBox.checked) txt = txt.fixed();
      if (document.form1.italicsBox.checked) txt = txt.italics();
      if (document.form1.smallBox.checked) txt = txt.small();
      if (document.form1.strikeBox.checked) txt = txt.strike();
      if (document.form1.subBox.checked) txt = txt.sub();
      if (document.form1.supBox.checked) txt = txt.sup();
   
      clr = document.form1.colorList.options[document.form1.colorList.options.selectedIndex].text;
      txt = txt.fontcolor(clr);
      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>
  <h1>
    String Object Formatting
  </h1>
  <hr>
  <form method="POST" name="form1">
    <p>
      <strong>
        String:
      </strong>
      <input type=text size=40 maxlength=256 name="stringField">
    </p>
    <p>
      <strong>
        Style:
      </strong>
      <input type=checkbox name="bigBox" value="ON">
      Big
      <input type=checkbox name="blinkBox" value="ON">
      Blink
      <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=checkbox name="subBox" value="ON">
      Sub
      <input type=checkbox name="supBox" value="ON">      Sup
    </p>
    <p>
      <strong>
        Font:
      </strong>
      Color:
      <select name="colorList" size=1>
        <option selected>black</option>
        <option>green</option>
        <option>red</option>
        <option>yellow</option>
        <option>white</option>
      </select>
      Size:
      <select name="sizeList" size=1>
        <option selected>1</option>
        <option>2</option>
        <option>3</option>
        <option>4</option>
        <option>5</option>
      </select>
    </p>
    <input type="button" name="Show" value="Show" onClick="showWindow()">
  </form>
</body>
</html>

           
         
    
  








Related examples in the same category

1.Demo all String methods
2.String utility: word count, replace and capitalize
3.Strip Commas
4.Text Range Search and Replace (IE only)
5.Counting the Words in a Text String
6.Reversing a String
7.Trimming a String Using Regular Expressions
8.String encode and decode
9.Capitalizing the First Letter in Each Word of a String
10.Playing with Strings
11. Using the String Object's Link Method
12.Using a for Loop to Reverse a String
13. Concatenate JavaScript String
14.String length: number of characters in a string.
15.String fontcolor(): a string in a specified color
16.String indexOf(): string position
17.String Validation
18.Using Quotes within Strings
19.Using the String Object
20.String toUpperCase
21.Lab for string.replace() and string.search()
22.Slicing a String
23.A String Object Prototype
24.Creating a Custom toString() Method
25.Reading a Portion of a String
26.Source Code for a Sample Page That Formats a String Object with the 'a' Tag
27.Adding a replace() Method to the String Object
28.Creating a Function That Will Search and Replace in Strings
29. Using the indexOf() Method to Find All Occurrences of the Letter e in a Sentence
30.Methods and Properties of the String Object
31.String match(): returns the text if found
32.String substr() and substring(): returns a specified part of a string
33.String toLowerCase() and toUpperCase(): converts a string to lowercase and uppercase
34.Converting Strings to Upper Case
35.String encoder
36.Concatenate two string variables together
37.Search string value in an array