Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Microsoft® JScript® fontcolor Method |
Language Reference Version 1 |
Places an HTML <FONT> tag with the COLOR attribute around the text in a String object.
strVariable.fontcolor(colorval)
"String Literal".fontcolor(colorval)The colorval argument is a string containing a color value. This can either be the hexadecimal value for a color, or the predefined name for a color.
The following example demonstrates the fontcolor method:The value of strVariable after the last statement is:var strVariable = "This is a string"; strVariable = strVariable.fontcolor("red");Valid predefined color names depend on your JavaScript host (browser, server, and so forth). They may also vary from version to version of your host. Check your host documentation for more information.<FONT COLOR="RED">This is a string</FONT>No checking is done to see if the tag has already been applied to the string.
Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |