How can i trigger two different tooltips at the same time using D3/javascript?
Solution 1:
In JavaScripy you can use addEventListener function to handle more function
Doc: addEventListener()
It's simple usage:
const el = document.getElementById('outside');
el.addEventListener("mouseenter", () =>{
functionFireToolTipOne();
functionFireToolTipTwo()
};
);