Hi Imalunatic,
I didn’t got exactly what you mean
could you explain more with example please ?
Hi Jamel,
Well, for instance, I create this tooltip:
‘The standard package contains <span id=”TXT1″></span>.
The price is <span id=”TXT2″></span>’
Then I use JavaScript to fill the content of the spans TXT1 and TXT2.
Ok I’m not sure I got what you need but maybe you should use some js code or jQuery eventually :
$( document ).ready(function() {
$( "#TXT1" ).html("<b>The content ....</b>");
});
Hey Jamel, thanks. That kinda worked.
I had to use ‘setTimeout’ and then call the function though.
Otherwise it didn’t work.
But thanks! Problem solved!
You welcome imalunatic,
Try to use this instead of setTimeout :
$(document).on("keywordsLoaded",function() {
$( "#TXT1" ).html("<b>The content ....</b>");
});