Version

removeAt Method

Remove the node at the specified index.
Syntax
ASP.NET Ajax Javascript (Specification) 
function removeAt( 
   index : int,
   keepChildren : Boolean
) : Node;
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfNodeCollection.removeAt(int,Boolean);

Parameters

index
The index of the node that will be removed.
keepChildren
If true the children will not be removed.

Return Value

The node that is removed from the collection.
See Also