Skip to content

Instantly share code, notes, and snippets.

@gustavom
Last active May 6, 2016 18:50
Show Gist options
  • Save gustavom/9771a6fad7a100fc781235e898082a40 to your computer and use it in GitHub Desktop.
Save gustavom/9771a6fad7a100fc781235e898082a40 to your computer and use it in GitHub Desktop.
Closest jquery
$(document).ready(function(){
$("span").closest("ul").css({"color": "red", "border": "2px solid red"});
});
/*
diferente do parent(), ele varre os elementos 'pai' até encontrar o definido;
No exemplo, a partir do elemento 'span', o js vai varrer os elementos pai, até achar uma 'ul'.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment