JSFiddle - React, Tailwind, and code Playground

by ainop

HTML

<a href="#" style="display:none">test</a>

JavaScript

$('a').on('click', function (e) {
    e.preventDefault();
    console.log('Direct bind on hidden element');
});

$(document).on('click', 'a', function (e) {
    e.preventDefault();
    console.log('Delegation of hidden element');
});

setTimeout(function () {
    $('a').show();
}, 3000);