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

 

JScript String Object strike Method

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

Syntax: JScript String Object strike Method

strVariable.strike( )

"String Literal".strike( )

Arguments: JScript String Object strike Method

strVariable

The name of a String object.

Remarks: JScript String Object strike Method

The example that follows demonstrates how the strike method works:

var strVariable = "This is a string object";

strVariable = strVariable.strike( );

The value of strVariable after the last statement is:

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

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

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