Created
May 19, 2014 12:28
-
-
Save konstantindenerz/3f3d5f2c9612e803007b to your computer and use it in GitHub Desktop.
This file contains 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
<script type='text/javascript' src='http://code.jquery.com/jquery-1.11.1.min.js'> | |
</script> | |
<script> | |
$(function(){ | |
var div = $('.a1a'); | |
var divs = div.parents('div'); | |
console.log(divs); | |
}); | |
</script> | |
<div class='root'> | |
<div class='a'> | |
<div class='a1'> | |
<div class='a1a'></div> | |
</div> | |
<div class='a2'> | |
</div> | |
</div> | |
<div class='b'> | |
<div class='b1'> | |
</div> | |
<div class='b2'> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
output