JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://prototypejs.org/javascripts/prototype.js" type="text/javascript"></script>

<a class="button view" style="cursor:pointer" id="addComment">click here</a>

JavaScript

Event.observe('addComment', 'click', function(event) {
    alert('u clicked on click here');
});