JSFiddle - React, Tailwind, and code Playground

by cmd0

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-mobile/1.4.5/jquery.mobile.min.js"></script>
<body>
  <div id="me">
    here's some text<br>
    <button id='btn'>
click me
</button>
  </div>
</body>

JavaScript

$(document).on('pageinit', function(event) {

  $('#me').on('click', '.votes', function() {
    alert('hi');
  });

  $("#btn").on('click', function() {
    $('#me').append('<br> and more');
    $('#me').html("<table><tr><td class='votes'>vote cell</td></tr></table>")
  });
});