Lines Matching +full:p +full:- +full:up
18 * - node object: actually it's "is child of" check
19 * - tagname: getParent(el, 'li') == getParent(el, 'tagName', 'LI')
20 * - any node attribute
37 * Creates element all-at-once
48 document.createElementExt = function (tag,p) { argument
51 for (i in p) {
52 if (!p.hasOwnProperty(i)) continue;
54 case "class" : el.setAttribute('className',p[i]); el.setAttribute('class',p[i]); break;
55 …case "style" : for (k in p[i]) { if (!p[i].hasOwnProperty(k)) continue; el.style[k] = p[i][k]; } b…
56 …case "event" : for (k in p[i]) { if (!p[i].hasOwnProperty(k)) continue; el.attachEvent(k,p[i][k]);…
57 case "child" : L = p[i].length; for (k = 0; k<L; k++) el.appendChild(p[i][k]); break;
58 …case "param" : for (k in p[i]) { if (!p[i].hasOwnProperty(k)) continue; try { el[k] = p[i][k] } ca…
68 * @lastmodified 2006-09-03
125 var el = o; // "el" will be nodes as we walk up, "o" will be saved for offsetParent references
134 … take its scroll position into account. If elements further up the chain are scrollable, their
145 top -= el.scrollTop;
148 left -= el.scrollLeft;