JSFiddle - React, Tailwind, and code Playground

by goje87

HTML

<html>
    <head>
        <title> test </title>
    </head>
    <body>
        <input type="button" id="power" />
        <div id="result">System is currently off.</div>
    </body>
</html>

JavaScript

$('#power').bind('click', function()
                 {
                     window.open('http://www.google.com', 
                 });