While building a site I ran into this very annoying problem with IE 6.
Receiving the elm.clientWidth is null or not a object error from Dyndocument.js line 45 while accessing the lines.
p.findDimensions = function() {
this.w=(dynapi.ua.ns||dynapi.ua.opera)? this.frame.innerWidth : this.elm.clientWidth;
this.h=(dynapi.ua.ns||dynapi.ua.opera)? this.frame.innerHeight : this.elm.clientHeight;
};
Exact error states "this.elm.clientWidth is null or not a object."
Granted I don't know if anyone EVEN looks this stuff over anymore, but surely wtf. any point in the right direction would be appriciated