JSFiddle - React, Tailwind, and code Playground

HTML

<input id="addButton" type="button" value="Add Another Button">

<div style="width: 300px; height: 400px; top: 50px; left: 10px; position: absolute; border: 1px solid black;" >
	<section id="page1" data-role="page">
        <div class="content" data-role="content">
		    <a href="#" data-role="button">This is a button!</a>
		</div>
	</section>
</div>

JavaScript

$(document).ready(function() {
    $('#addButton').click(function() {
        $('.content').append('<a href="#" data-role="button">This is another button!</a><br />');
        });
    });