tengo un problemilla con un .JS
es el folderTree antiguo que iba muy bien con IE6 , pero al rescatarlo (6 años y alguna modificación mia) no me funciona con el Chrome.
la nueva versión es diferente ( peor y mas sencilla)...cambiar todo lo que tengo ya , sería muy dificultoso.
creo que habría que cambiar algo de esto :
Código Javascript:
para hacerlo compatible con Chrome...Ver original
if (browserVersion == 1) { if (this.navObj.style.display == "none") return this.navObj.style.display = "none" } else { if (this.navObj.visibility == "hiden") return this.navObj.visibility = "hiden" ...... if (browserVersion == 2) { doc.write("</layer>") if (browserVersion == 1) { this.navObj = doc.all["folder"+this.id] this.iconImg = doc.all["folderIcon"+this.id] this.nodeImg = doc.all["nodeIcon"+this.id] } else if (browserVersion == 2) { this.navObj = doc.layers["folder"+this.id] this.iconImg = this.navObj.document.images["folderIcon"+this.id] this.nodeImg = this.navObj.document.images["nodeIcon"+this.id] doc.yPos=doc.yPos+this.navObj.clip.height
alguien sabe como hacer esto mas facil????
espero opiniones.gracias