I'm trying to add multiple criteria to JQuery find() and couldn't make any progress.
Working code
$("#left-menu-bar").find("li:not(.login)").each(function(){loadframe(this);})
I'm trying to add logout class as well to the above find criteria and couldn't make it work.
My attempt:
$("#left-menu-bar").find("li:not(.login)").find("li:not(.logout)").each(function(){loadframe(this);})