JSFiddle - React, Tailwind, and code Playground

HTML

<div class="filter"><a href="#">Clicky</a></div>

JavaScript

$('.filter').on( 'click', 'a', function( event ) {
  event.preventDefault();
   window.location.hash = "somehash";
   alert(window.location.hash);
});