JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css">
<!DOCTYPE html>
<html>
  <head>
    <title>Button Test</title>
  </head>
  <body>
    <div data-role="page">
      <div data-role="header">
        <h1>Button Test</h1>
      </div>
      <div data-role="content">
        <a id="testbutton" data-role="button">test button</a>
      </div>
    </div>
  </body>
</html>

JavaScript

$(document).ready(function () {
    $('#testbutton').bind('click', function() {
      setTimeout("$('#testbutton').removeClass('ui-btn-active')", 0);
    });
});