Browse Financial Aid and Awards sections
https://www.athabascau.ca/support-services/ 7cf250be0a2a55f3406c7062f1d53093 /*Load Awards Listings*/ $.ajax({ url: 'https://www.athabascau.ca/scripts/student-academic-services/depts/otr/student-awards/index.php', type: 'POST', data: {}, success: function (response) { /* load results via ajax call from course-listing.php */ $("#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); } });