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')
}
}
by Rino Raj
<p>Click any where on result and press enter key</p
document.onkeypress = function (e) {
if (e.keyCode == 13) {
alert('clicked')
}
}