Home | History | Annotate | Download | only in jstemplate

Lines Matching refs:child

348  * Appends a new child to the specified (parent) node.
351 * @param {Node} child Child node to append.
354 function domAppendChild(node, child) {
355 return node.appendChild(child);
389 * Inserts a new child before a given sibling.
393 * @return {Node} Reference to new child.
400 * Replaces an old child node with a new child node.
402 * @param {Node} newChild New child to append.
403 * @param {Node} oldChild Old child to remove.
421 * Remove a child from the specified (parent) node.
424 * @param {Node} child Child node to remove.
427 function domRemoveChild(node, child) {
428 return node.removeChild(child);