$(document).ready(function(){ activePageHighlight("listMenuRootmenudonacions"); }); function activePageHighlight(elm) { if (typeof elm == 'string') elm = document.getElementById(elm); if (!elm) return; var links = elm.getElementsByTagName('a'), chosen = null; for (var i = 0; i < links.length; i++) { if (links.item(i).href==location.href || links.item(i).href+'/'==location.href) { if (!chosen || links[i].href.length > chosen.href.length) chosen = links[i]; } } while (chosen && chosen.className != 'menulist') { if (chosen.nodeName.toLowerCase() == 'li' && (chosen.className != 'dropdown')) { chosen.className += ' active'; } chosen = chosen.parentNode; } };