Can you help me with changing the content of Easy Tooltip dynamically via Javascript? I tried almost everything:
document.getElementById('easy_tooltip').innerHTML(tooltipContent);
$("#easy_tooltip").html(tooltipContent);
$("#easy_tooltip").content(tooltipContent);
But it doesn't work. I cannot access the content of that element.
The example can be found here.
Thank you.