You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Loop over all links on the page
for (var i = 0; i < a.length; i++) {
var link = a[i];
var href = link.getAttribute("href");
// Skips links with data-sa-event-ignore data attribute
if(link.dataset.saEventIgnore != null) continue;
The text was updated successfully, but these errors were encountered:
I like the auto events script, however it would be nice to be able to exclude specific outbound links.
A solution could be adding a data- atrribute, for example data-sa-nocapture. In the loop you could check for that.
The text was updated successfully, but these errors were encountered: