Skip to main content
/*Load Awards Listings*/ $.ajax({ url: 'https://eir6fexp0m.execute-api.us-west-2.amazonaws.com/Prod/GetAwards', type: 'GET', data: {}, success: function (response) { $("#listings-main-content-awards").html(response); $.getScript("https://www.athabascau.ca/framework/v1/theme/js/secondary/filtering-plugins.js").done(function() { $.getScript("https://www.athabascau.ca/framework/v1/theme/js/secondary/award-filters.js").done(function() { /* hide #listing loader now that everything is loaded */ $("#listings-loader").hide(); /* Fade in results */ setTimeout(function(){ $("#listings-main-content-awards").fadeIn(); }, 300); }); }); }, error: function (e) { console.log(e); } });