JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<input type="button" id="b1" value="Click Me" />
<input type="button" id="b2" value="Click Me" />
<input type="button" id="b3" value="Unbind all handlers" />

CSS

input[type="button"]{
  display:block;
}

JavaScript

$('#b1, #b2').on('click', function(){
alert('Clicked!');
});
$('#b3').on('click', function(){
$('body').childeren().off('click');
});