docs4you's picture
Upload 487 files
27867f1 verified
raw
history blame contribute delete
395 Bytes
$(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));