JSFiddle - React, Tailwind, and code Playground

HTML

<div id="content">This is content</div>
<div id="link">this is a link</div>

JavaScript

$(document).ready(function(){
		$("#link").click(function(){
            $("#content").html("<a herf="http://www.google.com">google.com</a>");
		} );
});