Encountering an issue with Mootools 1.2 Tips (custom tooltips)
We are currently utilizing Joomla with the latest update that includes Mootools 1.2, and I am working with the following JS code:
$$('.tipz').each(function(element,index) {
var content = element.get('title').split('::');
element.store('tip:title', content[0]);
element.store('tip:text', content[1]);
});
var tipz = new Tips($$('.tipz'), {
className: 'tipz',
fixed: true,
hideDelay: 50,
showDelay: 50
});
The issue I'm facing is that the background images set for the tips are appearing without requiring a mouse hover - it's quite bothersome.
Has anyone else come across this problem or knows of a solution?
Appreciate any assistance,
Michael