JSFiddle - React, Tailwind, and code Playground
by Viruthagiri
HTML
<script src="http://demos.9lessons.info/reCopy.js"></script>
<!DOCTYPE html>
<html>
<body>
<form>
<p class="clone">
<fieldset>
<legend>Name:</legend>
First name: <input type="text" name="fname[]" value=""><br>
Last name: <input type="text" name="lname[]" value=""><br>
</fieldset>
</p>
</form>
<a href="#" class="add" rel=".clone">Add More</a>
</body>
</html>
CSS
input {margin:10px;}
JavaScript
$(function(){
var removeLink = ' <a class="remove" href="#" onclick="$(this).parent().slideUp(function(){ $(this).remove() }); return false">remove</a>';
$('a.add').relCopy({ append: removeLink});
});