On my webpage, I have number of icons over which a tooltip is applied. What I want is, change the background color according to the icon color. I cannot make changes in the main file.
Can anyone tell me how can I change the background color of the tooltip div?
I have applied below jquery, but it changes color when I remove the cursor from the icon:
$('.icon_box').hover(function(){
// I can check the color of icon here and put below, for testing I have applied orange
$('div.tooltipster-default').css("background-color", "blue");
});
Thanks.