Language Reference small Method


Description

Places the HTML <SMALL> tag around the text in the object.

Syntax

strVariable.small( )
"String Literal".small( )

Remarks

Below is an example of the effects of the small method:

var strVariable = "This is a string object"
strVariable.small()

The value of strVariable after the last statement above is: <SMALL>This is a string object</SMALL>

No checking is done to see if the tag already exists in the object.