>
> DynLayer.prototype.getInnerHTML=function() {
> var s="";
> if (this.html!=null) s+=this.html;
> for (var i=0;i<this.children.length;i++)
> s+=this.getOuterHTML(this.children[i]);
> return s;
> };
> if (is.ns4) {
if you keep reading from here you'll see that there is the
DynLayer.prototype.getOuterHTML function and depending
if (is.ns4){
DynLayer.prototype.getOuterHTML=function(){
//ns 4 code
}
} else {
DynLayer.prototype.getOuterHTML=function(){
//other browser code
}
}
ciao
_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev