Answers for "html encrypt email from bots"

0

html encrypt email from bots

.cryptedmail:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); 
}
Posted by: Guest on November-03-2020
0

html encrypt email from bots

<a href="#" class="cryptedmail"
   data-name="info"
   data-domain="example"
   data-tld="org"
   onclick="window.location.href = 'mailto:' + this.dataset.name + '@' + this.dataset.domain + '.' + this.dataset.tld; return false;"></a>
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language