JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<body>
       <div id="hola">
           <div>example</div>
           <span>example</span>
        </div>
    <div>not selected</div>
    <span>not selected</span>
</body>

JavaScript

$(document).ready(function() {
    $(document).click(function(e) {
        var $target = $(e.target);
        if ($target.is('#hola') || $target.closest('#hola').length) {
            return false;
        }
        console.log('sdf');
    });
});