function getSelectionText() {
var text = '';
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != 'Control') {
text = document.selection.createRange().text;
}
return text;
}
document.addEventListener('copy', function(e) {
var tt = getSelectionText();
var tl = tt.length;
// Регулярное выражение для email
var emailRegex = /[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/;
if (emailRegex.test(tt)) {
console.log('Email: ', tt.match(emailRegex)[0]);
ym(93355058,'reachGoal','email_copied',{'Email':tt});
}
});