Language Reference big Method

                  


Description

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

Syntax

strVariable.big( )
"String Literal".big( )

Remarks

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

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

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

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