$("form.custom-form").on("submit",function(event){
var form = $(this);
$.ajax({
data: form.serialize(),
dataType: 'json',
}).done(function(data) {
alert(data.message);
form[0].reset();
});
event.preventDefault();
});
$(document).on("submit", 'form.custom-form', function() {...}