$(document).ready(function() {
$(window).on("unload", function(e) {
if ($('.tickets__sidebar aside').html() !== '') {
jQuery.ajax({
dataType: 'json',
url: "/inc/removetickets.php",
data:{json: ticketJSON},
type: "POST",
async: false,
success:function(data){
console.log(data);
},
error:function (data){
}
});
} else {
return 'Билетов нет';
}
});
});