Untitled

 avatar
unknown
plain_text
4 years ago
375 B
14
Indexable
<script>
window.addEventListener('load', function() {
var _tel = document.querySelectorAll(".email-seller");
if (_tel) {
_tel.forEach(function(item) {
item.addEventListener('click', function handler() {
ga(ga.getAll()[0].get('name') +'.send', 'event', 'mail', 'click', window.location.pathname)
this.removeEventListener('click', handler);
});
});
}
})
</script>
Editor is loading...