Skip to main content
/*Load Find Resources*/ $.ajax({ url: "https://prd-library-01.athabascau.ca/", type: "GET", data: { c: "content_forms", m: "find_resources" }, success: function (response) { /* load results via ajax call from find-resources.php */ $("#listings-main-content").html(response); $.getScript("https://www.athabascau.ca/scripts/university-relations/library/find-resources.js?33").done(function () { /* hide #listings-main-content until the cp-listings-min.js is loaded. */ /* find-resources.js is loaded so show #listings-main-content */ $("#listings-main-content").show(); /* hide #listing loader now that everything is loaded */ $("#listings-loader").hide(); }); }, error: function (e) { console.log(e); }, });