Skip to main content
$(document).ready(function () { var lastLi = $('#additional-resources ul li:last-child'); var newLink = $('', { href: lastLi.find('a').attr('href'), target: lastLi.find('a').attr('target'), text: 'Program learning outcomes' }); var newSpan = $('', { class: 'fa fa-graduation-cap' }); newLink.prepend(newSpan); var newDiv = $('
', { class: 'button-links mt-2' }); var newUl = $(''); var newLi = $('
  • ').append(newLink); newUl.append(newLi); newDiv.append(newUl); $('#additional-resources').after(newDiv); lastLi.remove(); $(".testimonial-wrap").removeClass("mt-3"); var $aTag = $('', { id: 'groupstudy', class: 'fixed-nav-offset' }); $('h3:contains("Course schedule")').before($aTag); });