JSFiddle - React, Tailwind, and code Playground
HTML
<input id="elem" type="button" value="Нажми меня" />
JavaScript
document.addEventListener("DOMContentLoaded", function(event) {
onclick = function() {
alert(elem);
}
});
<input id="elem" type="button" value="Нажми меня" />
document.addEventListener("DOMContentLoaded", function(event) {
onclick = function() {
alert(elem);
}
});