JavaScript String - fontcolor() Method
Description
This method causes a string to be displayed in the specified color as if it were in a <font color = "color"> tag.
Syntax
Its syntax is as follows −
string.fontcolor( color )
Attribute Details
color − A string expressing the color as a hexadecimal RGB triplet or as a string literal.
Return Value
Returns the string with <font color="color"> tag.
Example
Try the following example.
<html>
<head>
<title>JavaScript String fontcolor() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.fontcolor( "red" ));
</script>
</body>
</html>
Output
<font color = "red">Hello world</font>
javascript_strings_object.htm