JSFiddle - React, Tailwind, and code Playground

HTML

<form method="post" class="management">
        <fieldset>
                <legend>What is Your Favorite Pet?</legend>
                        <input type="checkbox" name="animal" value="Cat" />Cats <br />
                        <input type="checkbox" name="animal" value="Dog" />Dogs<br />
                        <input type="checkbox" name="animal" value="Bird" />Birds<br />
                        <input type="submit" value="Submit now" />
        </fieldset>
</form>

JavaScript

$('.management').on('click touchstart',function(event) {
        alert('Node name : ' + event.target.value);
        if(
            event.target.nodeName != "BUTTON" 
            && event.target.nodeName != "I"
            && event.target.nodeName != "INPUT"
            )
        {

            jmOpenRelatedContact($(this));

        }
    });