please helppp :/ I swear to GOD this things was working yesterday pretty well. Just broke today, dont know why. but the done callback from $.ajax is not firing.
function check() {
                $.ajax({
                    url: "/statistics/setup-Table",
                    dataType : "json",
                    success: function(data){
                        alert("check "+data['total']);
                    }
                }).done(function(){
                    alert("done");
                }).fail(function(){
                    alert("fail");
                }).always(function(){
                    alert("always");
                });
            }
i only get one alert >> "check 24"
no alerts from done, fail or always pops up. even for the other $.ajax calls, callback functions are not getting fired. The url is fine too.
Thanks in advance.
