I'm no jquery expert, but something like this might work
$('a').each(function(){
if(this.parent() != $('#x'))
{
this.click(function(){
//do stuff here
});
});
I haven't tested this but it may do the trick
- [jQuery] how do i select all anchors OUTSIDE of a specific ... elubin
- [jQuery] Re: how do i select all anchors OUTSIDE of a ... Ricardo Tomasi
- [jQuery] Re: how do i select all anchors OUTSIDE of a ... sad1sm0

