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)
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.
http://www.jomsocial.com/community/ryanzroost/videos/826-Kat+Deluna+Unstoppable.html
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.
When postted in the forum does not appears the "" character.
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,
http://forum.joomla.org/viewto...6#p1361496
It worked for me!
you can find it at www.nonumber.nl
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?
