I'm trying to filter the XFN relationships meta data. If you don't
know, it works like this:

< a href="site" rel="friend colleague" >Name< /a >

in REL you can have various values, like "friend", "collegue" but even
"me" and "met"

because you can have multiple values, I did this:

xfn_me = $("a[rel*=me]").length;

but this doesn't work, because both "me" and "met" are matched!

Is there a way to filter the values exactly, even when there are
multiple values?

Reply via email to