Hi,
Problem is due to timing problem for Javascript in Microsoft IE browsers (IE8- still get error, IE7, IE6) only. See:
http://support.microsoft.com/default.aspx/kb/927917http://blogs.msdn.com/ie/archive/2008/04/23/what-happened-to-operation-aborted.aspxSearch for "What can you do?", Point 2.
Ans: Adding the defer boolean attribute to the script block (this defers execution of the script content until parsing is complete)
If you are using Javascript intensive code like VM, JComments, etc, you may encounter the above problem for IE browsers.
For Joomla, I added "defer" in:
\libraries\joomla\document\html\renderer\head.php
line 130
$strHtml .= $tab.'<script defer="defer" type="'.$strType.'" src="'.$strSrc.'"></script>'.$lnEnd;
x$strHtml .= $tab.'<script type="'.$strType.'" src="'.$strSrc.'"></script>'.$lnEnd;
Seems to work for me.
Please try the solution and confirm back here if this solution works? Thanks.Also, not sure if this will slow the loading of the web pages in other browsers? Please share your page loading performance.