JSFiddle - React, Tailwind, and code Playground
by dswitzer
HTML
<a id="notifyme" href="#" data-foo="bar">Click me</a>
JavaScript
$(function(){
$("#notifyme").click(function(e){
e.preventDefault();
alert( $(this).data('foo') );
});
});