Estoy tratando de extender todos los elementos dom para que pueda obtener y eliminar a sus hijos. La función está debajo (funciona en FF y Chrome). ¿Hay un equivalente en IE7 para extender el objeto dom base?Element.prototype en IE7?
if (!Element.get) {
Element.prototype.get = function(id) {
for (var i = 0; i < this.childNodes.length; i++) {
if (this.childNodes[i].id == id) {
return this.childNodes[i];
}
if (this.childNodes[i].childNodes.length) {
var ret = this.childNodes[i].get(id);
if (ret != null) {
return ret;
}
}
}
return null;
}
}
Element.prototype.removeChildren = function() {
removeChildren(this);
}
¡Gracias!
víctima http://stackoverflow.com/questions/592815/is-there-really-no-way-to-expose-the-prototype-of-a-html-element-in-ie-8/ – bobince