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').prepend($('<em>prepend text - </em>'));
$('p').prepend($('<em>').attr('title', 'text title attr').text('prepend text with title attr - '));
});