JSFiddle - React, Tailwind, and code Playground
by webvitaly
HTML
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div class="well">
<div class="well selector">
.selector
<div class="well">
<div class="well selector">
.selector
<div class="well">
<strong class="target">.target</strong>
</div>
</div>
</div>
</div>
</div>
JavaScript
$(function() {
$('.target').parents().prepend($('<span class="label">parent</span> '));
$('.target').parents('.selector').prepend($('<span class="label label-info">parent with selector</span> '));
});