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() {
    $(":not(#hola > *)").click(function(){
        console.log("sdf");
    });
});