JSFiddle - React, Tailwind, and code Playground

by Will Stott

HTML

<a href="" id="link">Right Click And Save</a></br>
<form name="Controls" id="buttons">
     <input type="text" name="ioBox" size="50" value="Sprite1"/></br>
         <input type="button" name="change" onmousedown="go()" value="Change" />
 </form>

JavaScript

function go () {
    document.getElementById("link").href = document.Controls.ioBox.value;
    }