JSFiddle - React, Tailwind, and code Playground

by StriplingWarrior

HTML

<a href="#">Do Something</a>

JavaScript

$('a').click(function(e) {
    e.preventDefault();
    alert(4);
});
$('a').click(function(e) {
    e.preventDefault();
    alert(3);
});
$(document).on('click', 'a[href="#"]', function(e){
    e.preventDefault();
    alert(2);
});
$(document).on('click', '[href="#"]', function(e){
    e.preventDefault(); 
    alert(1);
});