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

 

JScript String Object sup Method

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

Syntax: JScript String Object sup Method

strVariable.sup( )

"String Literal".sup( )

Arguments: JScript String Object sup Method

strVariable

The name of a String object.

Remarks: JScript String Object sup Method

The example that follows demonstrates how the sup method works:

var strVariable = "This is a string object";

strVariable = strVariable.sup( );

The value of strVariable after the last statement is:

<SUP>This is a string object</SUP>

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

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