JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <title>Cavern Sounds - Music production services</title>
    </head>
    <body>
        <a href="someplace.html">someplace 1</a>
        <div id="content">Old Content</div>
    </body>
</html>

JavaScript

$(document).ready(function() {

    $(function(){
        $('a[href*="someplace.html"]').live('click', function(e){
            e.preventDefault();
            alert("hello world");
        });
    });
    
    $.ajax({
        url: "/echo/html",
        success: function(html) {
            $("#content").html("<a href=\"someplace.html\">someplace 2</a>");
        }
    });
});