Previous PageNext Page

sup Method

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

Syntax

strVariable.sup( )

"String Literal".sup( )

Arguments

strVariable
The name of a String object.

Remarks

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 © 2000 Chili!Soft

Previous PageTop Of PageNext Page