JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
    <title>ComoRichWeb 5/16/2012 on JQuery Mobile and PhoneGap</title>
    <meta charset="utf-8">
    <title>JQuery Mobile and PhoneGap</title>
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
    <style type="text/css">html {font-size:1.5em;line-height:1.2em;}</style>
</head>
<body>
    <div data-role="page" id="collapsibleset">
        <div data-role="header">
            <h1>Collapsible-set</h1>
            <a href="#nestedlist" data-icon="arrow-r" data-iconpos="notext" class="ui-btn-right"   >Forward</a>
        </div>
        <div data-role="content">
            <div data-role="collapsible-set" data-theme="c" data-content-theme="d">

                <div data-role="collapsible" >
                <h3>Who am I?</h3>
                <p>
                    <ul>
                        <li>Luke Daffron</li>
                        <li>Lead Developer at Foliotek, Inc.</li>
                        <li>@thinginab</li>
                        <li>Wiffle app:  <a href="http://wiffletracker.appspot.com" target="_blank">http://wiffletracker.appspot.com</a></li>
                    </ul></p>
                </div>
                
                <div data-role="collapsible">
                <h3>Why JQMobile?</h3>
                <p><ul>
                        <li>Familiar technologies</li>
                        <li>Rapid development</li>
                        <li>Write once, run (almost) anywhere</a></li>
                        <li>Accessibility and graceful degradation</li>
                    </ul></p>
                </div>
                
                <div data-role="collapsible">
                <h3>Why Not?</h3>
                <p><ul>
    ...