Insert the specified string at the specified character offset.

[VBScript]
Public Sub InsertData( _
      ByVal offset As Integer, _
      ByVal data As String _
)
[JScript]
public function InsertData(
   offset : int,
   data : String
);

Parameters

offset
The position within the string to insert the supplied string data.
data
The string data that is to be inserted into the existing string.

See Also

CharacterData Object | CharacterData Members | DOM Namespace