Untitled

 avatar
unknown
plain_text
4 years ago
374 B
2
Indexable
window.addEventListener('load', function() {
var _tel = document.querySelectorAll(".email-seller");
if (_tel) {
_tel.forEach(function(item) {
item.addEventListener('click', function handler() {
    ga.getAll().forEach(_a => ga(_a.get('name') +'.send', 'event', 'mailto', 'click', window.location.pathname ))
this.removeEventListener('click', handler);
});
});
}
})
Editor is loading...