Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript String Object italics Method

Places HTML <I> tags around text in a String object.

Syntax: JScript String Object italics Method

strVariable.italics( )

"String Literal".italics( )

Arguments: JScript String Object italics Method

strVariable

The name of a String object.

Remarks: JScript String Object italics Method

The example that follows demonstrates how the italics method works:

var strVariable = "This is a string";

strVariable = strVariable.italics( );

The value of strVariable after the last statement is:

<I>This is a string</I>

No check is done to see if the tag already exists.

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.