I’m loading wordpress pages dynamically using ajax. It fires properly but I need to exclude a specific anchor.
<a href="http://store.myurl.com" target="_blank" title="Store">Store</a>
I thought using .not() would work like so
$('a').not('a[title=Store]').live('click',function() {
But that breaks the whole thing.
If I use $('a').live('click',function() { it fires properly.
p.s. I can’t change the anchor output like ad an ID or a Class.
You can try using the
:notselector instead: