JSFiddle - React, Tailwind, and code Playground

HTML

<a href='Leave Me Alone!'>Don't Click Me!</a><br>
<a href='#'>CLICK me!</a><br>
<a href='#header'>CLICK me!</a><br>
<a href='http://en.wikipedia.org/wiki/Random#A_number_is_.22due.22'>Don't alert!</a>

JavaScript

$('a[href^="#"]').click(function(){
    alert('Works!');
});