Created
September 21, 2011 18:30
-
-
Save cmilfont/1232893 to your computer and use it in GitHub Desktop.
Pegar todos os links que não pertencam a uma determinada table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("a").filter(function(index){ | |
if($(this).closest('table').attr("id") !== "minha-table") | |
return true; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ok, vamos ficar com Filter para esse caso então :)