DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Internet Explorer - Operation Aborted - Mootools
http://clientside.cnet.com/code-snippets/manipulating-the-dom/ie-and-operation-aborted/
move mootools loader into head section as you're probably trying to fire a function before the library is loaded, loads head first then body in ie6
<script language="javascript" type="text/javascript"src="http://www.google.com/jsapi"></script>
<script language="javascript" type="text/javascript">
google.load("mootools", "1.11");
</script>




