Searched defs:getElementById (Results 1 - 18 of 18) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lighttpd-1.4.39/external_file/js/davclient.js/dommer/
H A Ddommer.js660 Element.prototype.getElementById = function(id) { method in class:Element
H A Ddommer.min.js7 return(attr?attr.nodeValue:null);};Element.prototype.getAttributeNS=function(namespaceURI,name){var attr=this.getAttributeNodeNS(namespaceURI,name);return(attr?attr.nodeValue:null);};Element.prototype.hasAttributeNS=function(namespaceURI,name){return!!(this.getAttributeNS(namespaceURI,name));};Element.prototype.hasAttribute=function(name){return this.hasAttributeNS(this.namespaceURI,name);};Element.prototype.setAttributeNS=function(namespaceURI,name,value){for(var i=0;i<this.attributes.length;i++){var attr=this.attributes[i];if(attr.namespaceURI==namespaceURI&&attr.nodeName==name){attr.nodeValue=value;return;};};var attr=new Attribute();attr.initialize(namespaceURI,name,value,this.ownerDocument);attr._setProtected('ownerElement',this);this.attributes.push(attr);};Element.prototype.setAttribute=function(name,value){this.setAttributeNS(undefined,name,value);};Element.prototype.setAttributeNodeNS=function(newAttr){for(var i=0;i<this.attributes.length;i++){var attr=this.attributes[i];if(attr.namespaceURI==newAttr.namespaceURI&&attr.nodeName==newAttr.nodeName){throw((new DOMException(DOMException.INUSE_ATTRIBUTE_ERR)));};};this.attributes.push(newAttr);};Element.prototype.setAttributeNode=function(newAttr){this.setAttributeNodeNS(newAttr);};Element.prototype.removeAttributeNS=function(namespaceURI,name){for(var i=0;i<this.attributes.length;i++){var attr=this.attributes[i];if(attr.namespaceURI==namespaceURI&&attr.nodeName==name){delete this.attributes[i];return true;};};return false;};Element.prototype.removeAttribute=function(name){return this.removeAttributeNS(this.namespaceURI,name);};Element.prototype.getElementsByTagNameNS=function(namespaceURI,name,ret){if(!ret){ret=[];};for(var i=0;i<this.childNodes.length;i++){var child=this.childNodes[i];if(name==child.nodeName||name=='*'){if((!namespaceURI&&!child.namespaceURI)||(namespaceURI==child.namespaceURI)){ret.push(child);};};if(child.nodeType==1){child.getElementsByTagNameNS(namespaceURI,name,ret);};};return ret;};Element.prototype.getElementsByTagName=function(name){return this.getElementsByTagNameNS(this.namespaceURI,name);};Element.prototype.getElementById=function(id){if(this.id==id){return this;};for(var i=0;i<this.childNodes.length;i++){var child=this.childNodes[i];if(child.id==id){return child;};if(child.nodeType==1){var found=this.childNodes[i].getElementById(id);if(found){return found;};};};};function TextNode(){this._setProtected('nodeType',3);this._setProtected('nodeName','#text');};TextNode.prototype=new Node;this.TextNode=TextNode;TextNode.prototype.initialize=function(data,ownerDocument){this._setProtected('ownerDocument',ownerDocument);this._setProtected('childNodes',new NodeList());this.nodeValue=data;};TextNode.prototype.toXML=function(){return string.entitize(this.nodeValue);};TextNode.prototype.cloneNode=function(){var node=new TextNode();node.initialize(this.nodeValue,this.ownerDocument);return node;};function CommentNode(){this._setProtected('nodeType',8);this._setProtected('nodeName','#comment');};CommentNode.prototype=new TextNode;this.CommentNode=CommentNode;CommentNode.prototype.initialize=function(data,ownerDocument){this._setProtected('ownerDocument',ownerDocument);this._setProtected('childNodes',[]);this._setProtected('nodeValue',data);};CommentNode.prototype.toXML=function(){return"<!--"+this.nodeValue+"-->";};function Attribute(){this._setProtected('nodeType',2);};Attribute.prototype=new Node;this.Attribute=Attribute;Attribute.prototype.initialize=function(namespaceURI,qname,value,ownerDocument){if(qname.match(/[^a-zA-Z0-9_\-:]/g)){throw((new DOMException(DOMException.INVALID_CHARACTER_ERR)));};this._setProtected('ownerDocument',ownerDocument);this._setProtected('namespaceURI',namespaceURI);this._setProtected('nodeValue',value);this._setProtected('childNodes',[]);if(this.__defineSetter__){this._nodeName=this.nodeName;this.__defineSetter__('nodeName',function(){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR)))});this.__defineGetter__('nodeName',function(){return this._nodeName});this.__defineSetter__('prefix',function(value){if(WARN_ON_PREFIX){throw('Setting prefix directly '+'breaks integrity of the '+'XML DOM in Internet '+'Explorer browsers!');};this._prefix=value;this._nodeName=this._prefix+ method in class:Element
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/js/davclient.js/dommer/
H A Ddommer.js660 Element.prototype.getElementById = function(id) { method in class:Element
H A Ddommer.min.js7 return(attr?attr.nodeValue:null);};Element.prototype.getAttributeNS=function(namespaceURI,name){var attr=this.getAttributeNodeNS(namespaceURI,name);return(attr?attr.nodeValue:null);};Element.prototype.hasAttributeNS=function(namespaceURI,name){return!!(this.getAttributeNS(namespaceURI,name));};Element.prototype.hasAttribute=function(name){return this.hasAttributeNS(this.namespaceURI,name);};Element.prototype.setAttributeNS=function(namespaceURI,name,value){for(var i=0;i<this.attributes.length;i++){var attr=this.attributes[i];if(attr.namespaceURI==namespaceURI&&attr.nodeName==name){attr.nodeValue=value;return;};};var attr=new Attribute();attr.initialize(namespaceURI,name,value,this.ownerDocument);attr._setProtected('ownerElement',this);this.attributes.push(attr);};Element.prototype.setAttribute=function(name,value){this.setAttributeNS(undefined,name,value);};Element.prototype.setAttributeNodeNS=function(newAttr){for(var i=0;i<this.attributes.length;i++){var attr=this.attributes[i];if(attr.namespaceURI==newAttr.namespaceURI&&attr.nodeName==newAttr.nodeName){throw((new DOMException(DOMException.INUSE_ATTRIBUTE_ERR)));};};this.attributes.push(newAttr);};Element.prototype.setAttributeNode=function(newAttr){this.setAttributeNodeNS(newAttr);};Element.prototype.removeAttributeNS=function(namespaceURI,name){for(var i=0;i<this.attributes.length;i++){var attr=this.attributes[i];if(attr.namespaceURI==namespaceURI&&attr.nodeName==name){delete this.attributes[i];return true;};};return false;};Element.prototype.removeAttribute=function(name){return this.removeAttributeNS(this.namespaceURI,name);};Element.prototype.getElementsByTagNameNS=function(namespaceURI,name,ret){if(!ret){ret=[];};for(var i=0;i<this.childNodes.length;i++){var child=this.childNodes[i];if(name==child.nodeName||name=='*'){if((!namespaceURI&&!child.namespaceURI)||(namespaceURI==child.namespaceURI)){ret.push(child);};};if(child.nodeType==1){child.getElementsByTagNameNS(namespaceURI,name,ret);};};return ret;};Element.prototype.getElementsByTagName=function(name){return this.getElementsByTagNameNS(this.namespaceURI,name);};Element.prototype.getElementById=function(id){if(this.id==id){return this;};for(var i=0;i<this.childNodes.length;i++){var child=this.childNodes[i];if(child.id==id){return child;};if(child.nodeType==1){var found=this.childNodes[i].getElementById(id);if(found){return found;};};};};function TextNode(){this._setProtected('nodeType',3);this._setProtected('nodeName','#text');};TextNode.prototype=new Node;this.TextNode=TextNode;TextNode.prototype.initialize=function(data,ownerDocument){this._setProtected('ownerDocument',ownerDocument);this._setProtected('childNodes',new NodeList());this.nodeValue=data;};TextNode.prototype.toXML=function(){return string.entitize(this.nodeValue);};TextNode.prototype.cloneNode=function(){var node=new TextNode();node.initialize(this.nodeValue,this.ownerDocument);return node;};function CommentNode(){this._setProtected('nodeType',8);this._setProtected('nodeName','#comment');};CommentNode.prototype=new TextNode;this.CommentNode=CommentNode;CommentNode.prototype.initialize=function(data,ownerDocument){this._setProtected('ownerDocument',ownerDocument);this._setProtected('childNodes',[]);this._setProtected('nodeValue',data);};CommentNode.prototype.toXML=function(){return"<!--"+this.nodeValue+"-->";};function Attribute(){this._setProtected('nodeType',2);};Attribute.prototype=new Node;this.Attribute=Attribute;Attribute.prototype.initialize=function(namespaceURI,qname,value,ownerDocument){if(qname.match(/[^a-zA-Z0-9_\-:]/g)){throw((new DOMException(DOMException.INVALID_CHARACTER_ERR)));};this._setProtected('ownerDocument',ownerDocument);this._setProtected('namespaceURI',namespaceURI);this._setProtected('nodeValue',value);this._setProtected('childNodes',[]);if(this.__defineSetter__){this._nodeName=this.nodeName;this.__defineSetter__('nodeName',function(){throw((new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR)))});this.__defineGetter__('nodeName',function(){return this._nodeName});this.__defineSetter__('prefix',function(value){if(WARN_ON_PREFIX){throw('Setting prefix directly '+'breaks integrity of the '+'XML DOM in Internet '+'Explorer browsers!');};this._prefix=value;this._nodeName=this._prefix+ method in class:Element
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lighttpd-1.4.39/external_file/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/APP-IPK/AiCloud-ipk/opt/etc/aicloud_UI/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/www/
H A Dclient_function.js[all...]
H A Dstate.js[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/www/
H A Dclient_function.js[all...]
H A Dstate.js[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/www/
H A Dclient_function.js[all...]
H A Dstate.js[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/external_file/js/davclient.js/dommer/
H A Ddommer.js
H A Ddommer.min.js

Completed in 391 milliseconds