I would like a mouseover event happening on a css selector while the mouse curser is on a different element. I need to set this up through a custom tag in Google Tag Manager running a js. My idea was:
(function() {
document.getElementById("atcclick").mouseover();
})();
When I use .click
a click on #atcclick is recognized, works perfectly fine! But with .mouseover
no mouseover event is recognized. Any idea what I am doing wrong?