Quote:
Originally Posted by
Skipper_Ri
Yes, I read it, but can never get the correct display tooltips. Can you, please write here with the correct display?
Thanks in advance
There are several versions of the tooltip you can use, but the one you pasted in here is the regular one, so I will explain using that one..
First let me ask you what editor you are using?
When I tested this, I did it on a fresh demo installation, with default editor, and noticed it stripped off the id tag..which is the one that makes the tooltip work.
So as soon as I installed good joomla editor, and added the id in again, the tooltip worked.
This code you paste in right above the </head> tag of your index file:
<script type="text/javascript">
window.addEvent('domready', function(){
new ToolTip({tipper:
'regular', message:'This one is a regular tooltip. Mouse out and Poof! It is gone. Magic stuff (eat your heart out David Blaine).<br>Like the example above, it supports images and HTML.'});
});
</script>
Then in your article you must paste this code into the html
<
a id="regular" title="Normal ToolTip" href="#">regular ToolTip</a>
Notice the id, it is nessesary for it to work