JSFiddle - React, Tailwind, and code Playground

by lostinplace

HTML

<div>
    <span>$.live group </span>
    <button type = "button" class ="live" id="ltest">test</button>
    <button type = "button" class="live" id="lcontrol">control</button>
</div>
<div>
    <span>$.on group </span>
    <button type = "button" class ="on" id="otest">test</button>
    <button type = "button" class="on" id="ocontrol">control</button>
</div>

CSS

button{
    width:100px
}

JavaScript

$('.live').live('click',function(){alert('clicked')});
$('#ltest').die('click')

$('.on').on('click',function(){alert('clicked')});
$('#otest').off('click')