Form submit by ajax/jquery


$(function(){

$.ajax({
type: "post",
url:example.php,
data: $("#user-form").serializeArray(),
success: function(response){

alert(response);
$("#response-div").html(response);
}
});

});

Leave a Reply

Page 1 of 1712345NextLast »