I have a request which returns a jsp page. But the fact is, the jsp includes jsp:include in it(it calls another jsp file in it) and ie gives the error 80020101.
Any
I had the same error, but in my case there was a reserved word 'class'. Here is a snippet of code to make this clear:
'class'
function foo(ajaxResponse){ $(elem).attr('class', ajaxResponse.class); }
I rewrote this as:
$(elem).attr('class', ajaxResponse['class']);
Hope this was helpful.