I am applying Superfish to a menu, but only one top-level LI actually requires it, I would prefer the other LI items not to have it!
Since wordpress PHP is generating the source I thought of one way to do it - just use JQuery to remove any UL inside the other top-level LI items.
$('#navmain > li').each(function(index) {
if($(this).attr('id' ) !== 'menu-item-14') {
$(this).find('ul').remove();
}
});
Is there a better way with Superfish however? i.e. a callback perhaps where I can pass it the LI id of the one I want to dropdown?