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