jQuery.ajax({
url: "db.php",
type: "POST",
data: {valid: valid},
dataType: "json",
success: function (result2) {
if (result2.users.predid.length) {
// действия
}
return res;
});
console.log(result2);
} else {
alert("что то пошло не так:)")
}
return false;
}
});