Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $("#app_loading").ajaxStart(function () {
- $(this).fadeIn();
- });
- $("#app_error").ajaxStart(function () {
- $(this).hide();
- });
- $("#app_error").ajaxError(function (event, request, settings) {
- $(this).html(
- "Error: [" + request.status + "] - "
- + request.statusText + " - url: "
- + settings.url
- );
- $(this).fadeIn();
- });
- $("#app_loading").ajaxStop(function () {
- $(this).hide();
- });
Advertisement
Add Comment
Please, Sign In to add comment