1. The HTML of yours has certain <li> elements used without a parent <ul> element.
2. Try changing the following part of your code
Code:
<script type="text/javascript">
//anylinkcssmenu.init("menu_anchors_class") //call this function at the very *end* of the document!
anylinkcssmenu.init("anchorclass")
</script>
to
Code:
<script type="text/javascript">
window.onload = function(){
anylinkcssmenu.init("anchorclass");
}
</script>
*Note that if there are any other code that fires on the 'onload' event of either the window or body element, try place it inside the function mentioned above to avoid issues.
I think with this change itself IE will start render the page without showing the error.
3. The issue you've been experiencing is a famous one and well documented. You'll be able to understand more details about it from the below mentioned links:
http://support.microsoft.com/default.aspx/kb/927917
http://www.nczonline.net/blog/2008/0...aborted-error/
Hope this helps
Bookmarks