Add arrow suffix to menu links with children

//IF TOP MENU HAS DROPDOWN
$('#nav > .menulilink').each(function(){
    $(this).find(".catsubmenu,.submenu").before('<span class="arrow">&#8744;</span>').parent().addClass("hassubmenu");
});

Index Previous Next