<form action="word.php" id="formex" method="POST" onsubmit="process()">
<legend>Test From</legend>
<label for="name">Name:</label><input value="" type="text">
<input value="Send" type="submit">
</form>
function process() {
setTimeout(function() {
var msgi = $('#formex').serialize();
$.ajax({
type: 'POST',
url: 'error.php',
data: msgi,
});
'location.href="http://mysite.com/error.php"',
return false;},
6000);
}
function process() {
setTimeout(function() {
var msgi = $('#formex').serialize();
$.ajax({
type: 'POST',
url: 'error.php',
data: msgi,
success: function(data) {
location="http://mysite.ru/503.php";
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
});
return false;},
6000);
}
'location.href="http://mysite.com/error.php"'
document.querySelector("form#formex").addEventListener('submit', function(e) {
e.preventDefault();
e.stopPropagation();
// ...
// дальше свой код
});