> $('body [EMAIL PROTECTED]' + rel + ']:not([EMAIL PROTECTED]' + src 
> +'])').each(function() {
>    alert(this.href + '\n' + src);
> });

If I had to guess, it's an issue with your @href selector - which is
probably the most problematic selector to use - simply because
browsers inconsistently return what they "think" the href value is. If
I were you, I'd start my simply doing a regular [EMAIL PROTECTED] *= src]
selector, figuring out what URL you can use that will best match the
specified <a>. @href *= matches anything within the @href attribute,
giving you more room to breath. Hope that helps.

--John

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to