(line 188 Object required)
Error only in IE6 when try to load file in LoadPanel
To resolve problem I change line 16
from:
this.isIFrame=!(is.ie5 && is.platform=='win32');
to:
this.isIFrame=!((is.ie6 || is.ie5) &&
is.platform=='win32');
Logged In: YES
user_id=184788
how about this.isIFrame=!((is.ie && !is.ie4) &&
is.platform=='win32');
this will effect future versions such as IE 7 or 8 or 22 :-P
Holey crap.. just realised this is for DynAPI 2.. LOL.. is
anyone actually patching 2.x for distrobution?