This seems relatively simple, I'm just stumped on jQuery syntax.
Basically I want to take this form :
<div class="me_signup">
<input type="text" name="referral[0][name]" id="referral_0_name">
<br>
<input type="text" name="referral[0][email]" id="referral_0_email">
</div>
And duplicate it with a button and increase the variable number..
$(".add_another_button").click(function(){
...
};