JSFiddle - React, Tailwind, and code Playground

HTML

<input checked="checked" class="some-class" id="some-id" name="some-name" type="checkbox" value="some-value">

JavaScript

$("input").click(function(){
	console.log($(this)[0].checked);
});