String.fontcolor() : fontcolor « String « JavaScript Tutorial






Syntax

string.fontcolor(hexnum)
    string.fontcolor(color)

The fontcolor() method sets the COLOR attribute of an instance of the tag.

This attribute can either be passed as the hexadecimal equivalent of the color or the actual string that represents that color.

<html>
    <script language="JavaScript">
    <!--
    var myString = new String("Hello, World!");

    document.write("Hex usage: " + myString.fontcolor('FF0000'));
    document.write("<br>Color usage: " + myString.fontcolor('blue'));
    document.close();
    -->
    </script>
</html>








6.13.fontcolor
6.13.1.String.fontcolor()