$(document).ready(function(){
$( "#send" ).submit(function( event ) {
console.log("send")
event.preventDefault();
while(true){
$.ajax({
type: $(this).attr('method'),
url: "send.php",
data: new FormData(this),
contentType: false,
cache: false,
processData: false,
success: function(result){
if(result == 2){
console.log("Одобрено")
}
}
});
}
});
});
$(function() {
$( "#send" ).submit(async function(e) {
console.log("send")
e.preventDefault();
while (true) {
var response = await $.ajax({
type: $(this).attr('method'),
url: "send.php",
data: new FormData(this),
contentType: false,
cache: false,
processData: false
});
conole.log('Ответ сервера:', response);
// Делаем задержку перед повторением цикла в 1000 миллисекунд:
await $.Deferred(function(d) { setTimeout(d.resolve, 1000); });
}
});
});