JSFiddle - React, Tailwind, and code Playground
by ashfame
HTML
<script src="https://raw.github.com/madrobby/zepto/master/src/zepto.js"></script>
JavaScript
(function($) {
$(document).ready(function() {
$('#x').on('click',function(){
alert('b');
});
document.write('<a href="#" id="x">link</a>');
});
})(Zepto);