JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/base/jquery-ui.css">
<h1>jQuery UI 1.8.2
<p>
    <a href="http://www.google.com">jQuery UI Example</a>
</p>

JavaScript

$(function() {
    $('a').button();
    $('a').button('disable');    
    $('a').click(function() { return false; });
});