$(window).load(function () { var url = location.pathname; $('#topmenu li').each(function() { var href = $(this).find('a').attr('href') if(url == href) { $(this).addClass("active"); } }); });