JSFiddle - React, Tailwind, and code Playground
by andypotanin
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<a href="/#some-shit">Test 1</a>
<a href="/#some-shit">Test 2</a>
JavaScript
jQuery( 'a ').on( 'click', function( event ) {
event.preventDefault();
console.log( 'click!, url now', window.location.href )
});