I just want to get/change value of CheckBox with JavaScript. Not that I cannot use jQuery for this. I\'ve tried something like this but it won\'t work.
JavaScript fu
This will be useful
$("input[type=checkbox]").change((e)=>{ console.log(e.target.checked); });