JSFiddle - React, Tailwind, and code Playground

by edlebert

HTML

<html>
    <head>
    </head>
    <body>
        <input type="button" class="some_class" value="Click Me"/>
        <div id="output">
        </div>
    </body>
</html>

JavaScript

$('input'           ).live('click', function(){$('#output').append('Callback #1<br/>')});
$('input.some_class').live('click', function(){$('#output').append('Callback #2<br/>')});
$('input'           ).live('click', function(){$('#output').append('Callback #3<br/>')});