/* JS - Heizer Center */ function setTarget(linkURL){ var nodeList = document.querySelectorAll("a[href^='" + linkURL + "']"); for (var i = 0, len = nodeList.length; i < len; i++) { nodeList[i].setAttribute('target', '_blank'); } } window.onload = function() { setTarget("/programs/full-time-mba/academics/majors-pathways/venture-capital-and-private-equity-pathway.aspx"); setTarget("https://kellogg.campusgroups.com/"); }