Lines Matching defs:Node

6 var Y_Node = Y.Node,
15 * @return {Node} A Node instance bound to a DOM node or fragment
16 * @for Node
27 * Creates a new Node using the provided markup string.
31 * @return {Node} A Node instance bound to a DOM node or fragment
38 * @param {String | Node | HTMLElement | NodeList | HTMLCollection} content The content to insert
39 * @param {Int | Node | HTMLElement | String} where The position to insert at.
42 * <dt>Y.Node</dt>
43 * <dd>The Node to insert before</dd>
70 } else if (where && where._node) { // Node
74 if (content && typeof content != 'string') { // allow Node or NodeList/Array instances
85 * @param {String | Node | HTMLElement} content The content to insert
95 * @param {String | Node | HTMLElement} content The content to insert
104 * @param {String | HTMLElement | Node} node Node to be appended
105 * @return {Node} The appended node
113 * @param {String | HTMLElement | Node} newNode Node to be appended
114 * @param {HTMLElement | Node} refNode Node to be inserted before
115 * @return {Node} The inserted node
118 return Y.Node.scrubVal(this._insert(newNode, refNode));
124 * @param {Node | HTMLElement} node The node to append to
138 * @param {String | Node | HTMLElement | NodeList | HTMLCollection} content The content to insert
162 * @param {String | HTML | Node | HTMLElement | NodeList | HTMLCollection} content The content to insert
165 Y.Node.prototype.setHTML = Y.Node.prototype.setContent;
172 Y.Node.prototype.getHTML = Y.Node.prototype.getContent;
174 Y.NodeList.importMethod(Y.Node.prototype, [
176 * Called on each Node instance
179 * @see Node.append
184 * Called on each Node instance
187 * @see Node.insert
192 * Called on each Node instance
195 * @see Node.appendChild
200 * Called on each Node instance
203 * @see Node.insertBefore
208 * Called on each Node instance
211 * @see Node.prepend
216 * Called on each Node instance
226 * Called on each Node instance
234 * Called on each Node instance
239 * @see Node.setHTML
244 * Called on each Node instance
247 * @see Node.getHTML