I am create a web pixel extension to track user behaviour. When subscribing to standard events they are fired correctly. But subscribing to dom events does work.
analytics.subscribe('clicked', (event) => {
console.log('Clicked', {
...event.data
});
});
I tried on firefox and chrome but the click event is not fired. The same happen for other dom events like form_submitted, input_focused as well.
What might be happening here? Couldn’t find any documentation around troubleshooting this.