JSFiddle - React, Tailwind, and code Playground

HTML

<button id=123 value=uniqueId545>Clear Selection</button>

JavaScript

$(document).ready(function(){
    $("button").click(function(){
        var me = $(this);
        // do whatever with me
        alert(me.val());
        me.hide();
    }); 
});