Index: misc/ajax.js =================================================================== --- misc/ajax.js (revision 22451) +++ misc/ajax.js (working copy) @@ -441,7 +441,7 @@ * Handler for the form redirection error. */ Drupal.ajax.prototype.error = function (response, uri) { - alert(Drupal.ajaxError(response, uri)); + if (response.status != 0) alert(Drupal.ajaxError(response, db.uri)); // Remove the progress element. if (this.progress.element) { $(this.progress.element).remove(); Index: misc/autocomplete.js =================================================================== --- misc/autocomplete.js (revision 22451) +++ misc/autocomplete.js (working copy) @@ -303,7 +303,7 @@ } }, error: function (xmlhttp) { - alert(Drupal.ajaxError(xmlhttp, db.uri)); + if (xmlhttp.status != 0) alert(Drupal.ajaxError(xmlhttp, db.uri)); } }); }, this.delay);