JSFiddle - React, Tailwind, and code Playground

HTML

<div onclick="divClick(this, event)">
    <input type="checkbox">
</div>

JavaScript

function divClick(sender, event)
      {
         var chk = $(sender).find("input").first()[0];
         alert("Works in ie");
      }