|
Why isn't this in here? Description: Enables you to append several children to an object at once. The first parameter specifies the node to append to and all preceding parameters are the nodes to be appended. Syntax: appendChildren(parent, [,nodes]) function appendChildren() { if(arguments.length > 1 && arguments[0].nodeType) { for(var i = 1; arguments.nodeType && i < arguments.length; i ++) { arguments[0].appendChild(arguments); } } }
Last Edit: Aug 5, 2006 21:34:37 GMT by Aaron
|
|
|
|
'cause you never submitted it.  Very, very useful function mate.
|
|
|
|