Какой кусок кода отвечает за перезагрузку страницы?
submitHandler: function(form){
var form = document.forms.sendform,
formData = new FormData(form),
xhr = new XMLHttpRequest();
xhr.open("POST", "/wp-content/themes/VG/multisend.php");
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if(xhr.status == 200) {
setTimeout(function() {
jQuery("#fileList2").empty(),
jQuery("#sendform").trigger("reset"),
jQuery(".test").addClass("show");
}, 1000)
}
}
};
xhr.send(formData);
}
});