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 parent">.parent
        <div class="well">
            <div class="well">
                <span class="target">.target</span>
            </div>
        </div>
    </div>
</div>

JavaScript

$('.target').closest('.parent').css('background-color', '#ffa');