On any Stack Exchange network site, I am having issues retrieving my notifications (done by clicking the Stack Exchange logo -> Notifications).
It displays an error with an option to dismiss. It's been occurring for around 2 years. There are no trace statements outputted to console either.

EDIT:
Okay I did a bit of investigating, and the success callback on the ajax request for the url http://<siteurl>/notices/genuwine is never being hit.
v = function (b, a, e, c, f) {
var d = b.attr("id");
if (u[d]) w();
else {
u[d] = !0;
w();
var g = function () {
u[d] = !1;
StackExchange.helpers.showErrorPopup($(".seContainer"), "An error occurred while loading - please try again.")
};
$.ajax({
type: "GET",
url: a,
dataType: e,
success: function (a) {
u[d] = !1; // NEVER ENTERS THIS LINE
a && (0 < a.length || f) ? c(b, a) : g()
},
error: g,
complete: function () {
$(".seContainer").removeSpinner()
}
})
}
},
So I have a JSFiddle running with the exact parameters I am getting on the site: http://jsfiddle.net/acCzM/1/:
$.ajax({
type: "GET",
url: "http://meta.stackoverflow.com/notices/genuwine?userId=undefined",
dataType: "jsonp",
success: function (e) {
console.log("Success");
},
error: function() {
console.log("Error");
},
complete: function () {
console.log("Complete");
}
});
http://<siteurl>/notices/genuwine. Tryhttp://meta.stackoverflow.com/notices/genuwinein a separate tab, does it give you an error there too? – Martijn Pieters Nov 26 '12 at 9:57