JSFiddle - React, Tailwind, and code Playground

by John Grivas

HTML

<div class="SideOption" id="1">click div here</div>

JavaScript

function CreateBox(element) {
    $MyID = element.id;
    alert($MyID);
}

$(".SideOption").click(function () {
    CreateBox(this);
})