jQuery(document).ready(function($){
// $(document).on('pagebeforeshow', 'body', function(){
$.ajax({url: "https://techblog.sdstudio.top/blog",
dataType: "jsonp",
statusCode: {
200: function (response) {
console.log('status 200');
},
404: function (response) {
console.log('status 404 ');
}
}
});
// });
});