agent2026 schrieb:
> Hi all,
>
> Reading up on the new release, I'm interested in the new feature of being
> able to pass comma-separated lists of selectors to the .not filter.  Can
> this be applied to values?
In that case, a custom filter would be a good choice.

Something like this:
$("[EMAIL PROTECTED]:not(.thickbox)").filter(function() {
    return !/thissite.net|othersites.org|moresites/.test(this.href);
}).doIt();

You could omit the filtering in the selector and put it all into the 
filter funciton.

-- 
Jörn Zaefferer

http://bassistance.de


_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to