JSFiddle - React, Tailwind, and code Playground

by Ronny

HTML

<script src="http://github.com/arieh/Event-once/raw/master/Source/Event.once.js"></script>
<a href="#" rel="nofollow">Link</a>
<span class="link" tabindex="0">Span</span>

CSS

.link{
    cursor: pointer;
    text-decoration: underline;
    color: #0000ff;
}

JavaScript

$$('a,span').addEvent('click', function(ev) {
    if (ev) ev.preventDefault();
    alert('hi');
});