JSFiddle - React, Tailwind, and code Playground

by nate

HTML

<a href="http://google.com">Don't go to Google, please!</a>

JavaScript

$(document).on('click', 'a', function (event) {
    console.log('I am an analytics event');
    console.log('Is the default prevented?', event.isDefaultPrevented());
    event.preventDefault();
    console.log('Now it should be, no matter what', event.isDefaultPrevented());
});

$(document).on('click', 'a', function (event) {
    console.log('I am a separate event');
    event.preventDefault();
});