prototype.js Insertion.After bug in IE 6.0
This bug bit me and fixing it was a pain. I finally found a fix in Andy’s comment at Rob Sanheim’s Panasonic Youth Weblog. The fix? Modify line 1032 in prototype-1.4.0.js to:
if (this.element.tagName.toLowerCase() == ‘tbody’ || this.element.tagName.toLowerCase() == ‘tr’) {
this.insertContent(this.contentFromAnonymousTable());
}
Internet Explorer is a big piece of crap!


