$(document).ready(function () { $('#menu .pwcem-menu > ul > li').each(function () { var $a = $(this).find('a').click(function (e) { e.stopPropagation(); }); $(this).click(function () { var href = $a.attr('href'); if (href && href != 'javascript:void(0);') window.location.href = href; }).hover(function () { $(this).addClass('hovered'); }, function () { $(this).removeClass('hovered'); }); }); });