spinnach schrieb:
> ..how to select all links on a page that are not inside a list (not
> children of 'li')?..
>
Untested:
$("a").filter(function() { return !$(this).parents().is("ul "); })Requires 1.1 -- Jörn Zaefferer http://bassistance.de _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
