JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" id="foo" data-id="1000">Click Me 1</a>
JavaScript
document.getElementById("foo").onclick = function() {
alert(this.getAttribute('data-id'));
}
<a href="#" id="foo" data-id="1000">Click Me 1</a>
document.getElementById("foo").onclick = function() {
alert(this.getAttribute('data-id'));
}