JSFiddle - React, Tailwind, and code Playground

by Sebastian Kay

HTML

<button id="clickme">
blaöksdf
</button>

JavaScript

$(function(){
    $("#clickme").click(function(){
        alert(document.location.hash)
    });
});