JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<div class='parent'>
  <div class='child'></div>
</div>

CSS

.parent{
  width: 400px;
  height: 400px;
  background-color: red;
}

.child{
  width: 200px;
  height: 200px;
  background-color: green;
}

JavaScript

$('.parent').on('taphold', function( el ){
   alert( 'parent' );
})

$('.child').on('taphold', function( el ){
   alert( 'child' );
})