File size: 395 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$(document).ready(setTimeout(function(){
$('form').submit(function() {
$.ajax({
data: $(this).serialize(),
type: $(this).attr('method'), // GET or POST
url: $(this).attr('action'),
success: function(response) { // on success
$('#status').html(response);
}
});
return false;
});
}, 100)); |