JSFiddle - React, Tailwind, and code Playground

by webvitaly

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<span class="click">click</span>
<div class="target">target</div>

CSS

.click {
    cursor: pointer;
    border-bottom: 1px dashed #000;
}

JavaScript

$('.click').click(function() {
    $('.target').fadeToggle();
});