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

 

JScript String Object anchor Method

Places an HTML anchor <A> with a NAME attribute around specified text in the object.

Syntax: JScript String Object anchor Method

strVariable.anchor(anchorstring)

"String Literal".anchor(anchorstring)

Arguments: JScript String Object anchor Method

strVariable

The name of a String object.

anchorstring

Text you want to place in the NAME attribute of an HTML anchor.

Remarks: JScript String Object anchor Method

Call the anchor method to create a named anchor out of a String object. The following example demonstrates how the anchor method accomplishes this:

var strVariable = "This is an anchor" ;

strVariable = strVariable.anchor("Anchor1");

The value of strVariable after the last statement is:

<A NAME="Anchor1">This is an anchor</A>

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

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