-
- Published on
- Hits: 11478
Operation aborted error messages in Joomla
If you are getting an error 'operation aborted' in Internet Explorer when viewing the videos page, this is most likely caused by the use of 'domready' in Joomla's tooltip library. The only quick work around right now is to edit the file JOOMLA/libraries/joomla/html/html/behavior.php and at line 109, look for the following block of codes,
$tooltipInit = ' window.addEvent('domready', function(){ var JTooltips = new Tips($$(''.$selector.''), '.$options.'); });';
Replace it with the following,
$tooltipInit = ' window.addEvent('load', function(){ var JTooltips = new Tips($$(''.$selector.''), '.$options.'); });';
More references,
http://support.microsoft.com/default.aspx/kb/927917
http://forum.joomla.org/viewtopic.php?f=231&t=310784
{readmore}