JSFiddle - React, Tailwind, and code Playground
HTML
<title>onselect test</title>
<body>
<input type="checkbox">test
</body>
CSS
.text1 { border: 2px solid red; }
JavaScript
window.onchange = selectText;
function selectText()
{
alert("select event detected!");
}