JSFiddle - React, Tailwind, and code Playground

by webvitaly

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div>div</div>
<p>paragraph</p>

JavaScript

$(function() {
    $('div').before($('<em>before text - </em>'));
    $('p').before($('<em>').attr('title', 'text title attr').text('before text with title attr - '));
});