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; | |
}); |
Eu acredito que não. Por isso fiz usando o filter, por sugestão do @cmilfont. :)
ok, vamos ficar com Filter para esse caso então :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Desculpa perguntar, mas esse caso tem solução com seletor? Pois não sei se estou consigo ajudar.