jquery load always returning error?

jquery load always returning error?

In my browser console it shows success, but in the 'textStatus' callback variable it shows 'error'.

  1.     idea.load(link, 0, function(text, status, req) {
  2.         _("responseText: " + text + "\n" +
  3.           "textStatus: " + status + "\n" +
  4.           "XMLHttpRequest: " + req);
  5.     });

Where 'link' can be pretty much any link I can think of.