javascript - AJAX refreshing part of a page why is not working? -
i spent 2 days trying write allowed me upload file through ajax, close want do, can upload files through ajax, whole point of idea upload files without refreshing page, refreshing page , don´t know how solve it... current js $('#profilovka').validate({ submithandler: function (form) { var aformdata = new formdata(); aformdata.append("subor", $('#subor').get(0).files[0]); $.ajax({ type: "post", url: "upravit.php", processdata: false, contenttype: false, data: aformdata, success: function (data) { $('#nove').load(document.url + ' #nove'); } }) } }); and form <form class="profilovka" role="form" id="profilovka" method="post" enctype="multipart/form-data" > ...