JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<button id="submit">OH YEAH, NS1 IS MY BAG BABBY</button>

JavaScript

$('button#submit').click(function(evt) {
	evt.preventDefault();
    window.location.href = "http://www.angelfire.com/on/AustinPowers/";
    return false;
});