8detect
11/24/2017 - 6:56 PM

$.ajax promise callback

$.ajax promise callback

	//đây là các callback cho promise ajax, chú ý các callback này không là param trong 
	//ajax({}) trong hàm ajax chỉ duy nhất callback success{} và error{}
	ajax.done: function () {
		console.log("second success callback");
	},
	.fail(function () {
		console.log("fail");
	})
	.always(function () {
		console.log("fail or error");
		//showing loading
		$.loadingBox(false);
		$('#progress-bar').hide();
	});