dracoblue.net

Could not complete the operation due to error 80020101

This happend to me when I tried to load ajax-content in internet explorer (worked fine in Firefox, etc), which had a script-tag without a valid comments tag.

So just for the record, here is the solution, which helped me.

Before (Broken):

<script type="text/javascript">
<!--
  alert('text');
// -->
</script>

Fixed (Working)

<script type="text/javascript">
// <!--
  alert('text');
// -->
</script>
In internet explorer, javascript by
@ 14 May 2009, Comments at Reddit & Hackernews