el.html(html);
}
+function show_error(html) {
+ $('#error-overlay').html(html).show();
+}
+
+function hide_error() {
+ $('#error-overlay').empty().hide();
+}
+
+
+$(document).ajaxError(function(event, jqXHR, ajaxSettings, thrownError) {
+ // console.log(thrownError);
+ // console.log(ajaxSettings);
+ show_error('Error fetching results from <a href="' + ajaxSettings.url + '">' + ajaxSettings.url + '</a>');
+});
/*********************************************************
* FORWARD/REVERSE SEARCH PAGE
-
+jQuery(document).ready(function(){
+ hide_error();
+});