JSFiddle - React, Tailwind, and code Playground
HTML
<a id="foo" href="http://google.com">Hello</a>
JavaScript
$("foo").href = 'Test';
alert($("foo").href);
$("foo").setAttribute("href", "blahblah");
alert($("foo").href);
<a id="foo" href="http://google.com">Hello</a>
$("foo").href = 'Test';
alert($("foo").href);
$("foo").setAttribute("href", "blahblah");
alert($("foo").href);