JSFiddle - React, Tailwind, and code Playground
by olli
HTML
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css">
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<script src="https://github.com/downloads/SteveSanderson/knockout/knockout-1.2.1.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>Page Create</title>
</head>
<body>
</body>
</html>
JavaScript
$(document).ready(function(){
$('body').append('<div id="mypage" data-role="page" class="ui-page-active"><div data-role="header"><h1>The title</h1></div><div data-role="content">content</div></div>');
$('#mypage').page();
});