[jQuery] (OT) Node.prototype
Mozilla (Firefox) can extend Node, but IE cannot.
Here's a snippet of what I am trying to do:
Node.prototype.ac = function(e) { this.appendChild(e); }
The problem is that "Node" is not defined in IE.
Does anyone have any bright ideas on how we can trick IE into working also?
~Sean