Lines Matching +full:node +full:- +full:version
2 * This library appends to DOM interface IE-proprietary extensions
4 * @version 1.1
6 * @author Ilya Lebedev (ilya@lebedev.net), (c) 2004-2005
12 * version 2.1 of the License, or (at your option) any later version.
16 if (Node && !Node.prototype) {
17 var node = document.createTextNode(''); variable
18 var Node = node.constructor; variable
20 if (window.Node) {
21 Node.prototype.removeNode = function(removeChildren) { class
31 Node.prototype.swapNode = function(swapNode) {
40 if (!Node.prototype.attachEvent)
41 Node.prototype.attachEvent = function (e,f,c) {
43 return self.addEventListener(e.substr(2), f, false); // was true--Opera7b workaround!
45 if (!Node.prototype.fireEvent)
46 Node.prototype.fireEvent = function (e) {
94 …if (self.addEventListener) self.addEventListener(e.substr(2), f, false); // was true--Opera7b work…