JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css">
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
<!DOCTYPE html>
<html>
  <head>
    <title>Dialog Demo</title>
  </head>
  <body>
      <button>TEST</button>
  </body>
</html>

JavaScript

$(document).ready(function () {
      <script type="text/javascript">
            $(function () {
                $("button").button();
                $("button").click(function () { return false; });
            });
        </script>
});