JSFiddle - React, Tailwind, and code Playground

by brigand

HTML

<p>For support send an <a href="mailto:|bob_blah@com" onClick="unscramble(this)">e-mail</a></p>

JavaScript

function unscramble(scope) {
  console.log(scope.href);
  console.log(scope.getAttribute('href'))
  scope.href = 
  console.log(scope.href);
}