JSFiddle - React, Tailwind, and code Playground
by ghostoy
HTML
<button onclick="hello('world')">Click</button>
<pre id="out"></pre>
JavaScript
function hello(msg) {
document.getElementById('out').innerHTML = 'Hello ' + msg;
}
by ghostoy
<button onclick="hello('world')">Click</button>
<pre id="out"></pre>
function hello(msg) {
document.getElementById('out').innerHTML = 'Hello ' + msg;
}