JSFiddle - React, Tailwind, and code Playground

HTML

<a id="load_list" href="#">Load the list</a>

<ul></ul>

JavaScript

$('#load_list').click(function() {
        $('ul').append('<li><a href="#">Click here</a></li>');
        return false;
    });
    $('ul li a').live('click',function() {
        alert('Thank you for clicking');
        return false;
    });