JSFiddle - React, Tailwind, and code Playground

by Rino Raj

HTML

<p>Click any where on result and press enter key</p

JavaScript

document.onkeypress = function (e) {
    if (e.keyCode == 13) {
        alert('clicked')
    }
}