$(document).ready(function() { path = window.location.pathname.split('/'); if (path[2] == 'person' && (path[3] == 'owndetails' || path[3] == 'edit' || path[3] == 'request') && path[4] != 'personID') { mypath = '/' + path[1] + '/' + path[2] + '/owndetails'; } else if(path[2] == 'group' && (path[3] == 'show' || path[3] == 'edit') && path[4] != 'groupID') { mypath = '/' + path[1] + '/' + path[2] + '/show'; } else { mypath = '/' + path[1] + '/' + path[2]; } $('.portletNavigationTree a').each(function() { if ($(this).attr('href') == mypath) { /* console.log($(this).parent()); */ $(this).addClass('navTreeCurrentNode'); $(this).addClass('navTreeCurrentItem'); } }); });