JSFiddle - React, Tailwind, and code Playground

by hleinone

HTML

<script src="http://wzrd.in/standalone/dom-delegate@latest"></script>
<ul id="list">
    <li><a href="http://example.com">example</a></li>
</ul>
<button id="foobar">Add</button>

JavaScript

domDelegate(document.body).on('click', 'a.example', function(event) {
    event.preventDefault();
    alert(event.target.href);
});