﻿$(document).ready(function () {
    $("#loadind").remove();
    $('body').append("<div id='loading'>Attendere</div>");
    $("#loading").bind("ajaxSend", function () {
        $("body").mousemove(function (e) {

            var cssObj = { "position": "absolute", "top": (e.clientY) - 20 + "px", "left": (e.clientX) + 20 + "px" };
            $("#loading").css(cssObj);
        });
        $(this).show();
    }).bind("ajaxComplete", function () { $(this).hide(); });

 });