Operation aborted error messages in Joomla

Posted by: mark

Tagged in: Joomla , API

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 

 

 

 

19 Response(s)

You must be logged in to post a comment. Please register if you do not have an account yet.
hua12
hua12
October 15, 2011
http://www.monsterbeatsspiderman.com
rocket
September 28, 2009
ReReplacer is great, but this does not work. There are many areas causing this error and behavior.php and ReReplacer.
Short of insanity from hours of code fishing, the ONLY solution is to get users to upgrade, which sets us back to square one...lazy and complancent users.

NO SOLUTION TO THIS ISSUE...TRUST ME. I have gray hairs to prove it.
manos paschalakis
manos paschalakis
September 19, 2009
Well even here it's not working with IE 7

http://www.jomsocial.com/community/ryanzroost/videos/826-Kat+Deluna+Unstoppable.html
September 16, 2009
Hello,

I have find the solution to fix this issue.
Its works fine for me..

May be this will help you.
Please do the following steps

1. Download this awesome component: ReReplacer - search and replace
http://extensions.joomla.org/extensions/edition/replace/4336/details

2. After installing it, add a new item called something like Domready Replace.

3. In the Search & Replace section: Search - domready Replace - load

4. In the Search Areas section: Everywhere

Save the item and access your entry form from the frontend. Simple as could be.
The great thing is that if you un-installed the ReReplacer your original files are intact.

Oscar
June 16, 2009
sorry when writing code does not appears, insert an inverted bar before "'load" and just after "load" and anther one before "''.$selector.'" and just after ".$selector.'"
Oscar
June 16, 2009
ok here is the code to replace, in tittle u can post.
Oscar
June 16, 2009
please a moderator to tell us how to include an inverted bar in the posts.
Oscar
June 16, 2009
now I post the comment I realize the problem.

When postted in the forum does not appears the "" character.
Oscar
June 16, 2009
for those who this code doesnot work here is a correct one:

original:
$tooltipInit = 'window.addEvent('domready', function(){ var JTooltips = new Tips($$(''.$selector.''), '.$options.'); });';

replace with:
$tooltipInit = 'window.addEvent('load', function(){ var JTooltips = new Tips($$(''.$selector.''), '.$options.'); });';

hope this help you Robert Schütze,
Dmitry
June 09, 2009
For those, who tried to copy solution from here - do not do it! It is incorrect, because it missing some escape codes. The correct code is here:
http://forum.joomla.org/viewto...6#p1361496

It worked for me!
Dmitry
June 09, 2009
I changed this piece of codes also and it did not help smilies/sad.gif
bunkergate
bunkergate
June 03, 2009
What about the plugin rereplace? I use it at my site, to solve other problems with domready, at it works very good.

you can find it at www.nonumber.nl
Al Williams
May 31, 2009
yes, when I change the code to the suggestion as above, the whole site does not display at all, I had to remove it and restore the code as it was.
Mark Lee
Mark Lee
May 31, 2009
Robert,

This is by far the best solution that we have right now but we are still monitoring this as we move along. Perhaps changing the tooltip that is included in JomSocial in the future releases.

Al Williams,

Have you replaced the codes correctly?
Al Williams
May 30, 2009
Doesn't work and in fact the whole site doesn't display when I do this.
Robert Schütze
May 30, 2009
Any other solution?
busy