PHP
- 1 ответ
- 0 вопросов
1
Вклад в тег
});
$.ajax({
$(document).ready(function (e){
$('#upload-button').click(function (e){
e.preventDefault();
$("#message").empty();
$('#loading').show();
// });
$.ajax({
url: 'UpdateCitymarket.php',
type: "POST",
data: new FormData(this),
contentType: false,
cache: false,
processData: false,
success: function(data) // A function to be called if request succeeds
{
$('#loading').hide();
console.log(data);
$("#message").html(data);
}
});
});