Version

insert Method

Insert the specified node into the collection.
Syntax
ASP.NET Ajax Javascript (Specification) 
function insert( 
   node : Node,
   index : int
) : (Any);
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfNodeCollection.insert(Node,int);

Parameters

node
The node that will be inserted.
index
Specify the index at which the node will be inserted between its siblings. Specify -1 to append the node.
See Also