Code section:
Code
document.addEventListener('DOMContentLoaded', function() {
var link = document.querySelector('a.header-nav-folder-title[href="/Professional-Transformation"]');
if (link) {
link.addEventListener('click', function(event) {
event.preventDefault();
window.location.href = '/professional-development-services';
});
}
});