Button disable
jquery disable submit button after click
HTML
<button class="disable">Add Person</button>
JavaScript
$('.disable').click(function(){
$(this).prop('disabled', true);
});
<button class="disable">Add Person</button>
$('.disable').click(function(){
$(this).prop('disabled', true);
});