JSFiddle - React, Tailwind, and code Playground

by johnhunter

HTML

<div>
    <tt>click me</tt>
</div>

<script src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.js"></script>

JavaScript

$(function () {

    $('tt').bind('click', function () {
        alert('click');
        return false;
    });

});