JSFiddle - React, Tailwind, and code Playground

by seefeld

HTML

<!DOCTYPE html> 
<html>
<head>
    <title>jQuery Mobile: A Basic Form</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1,
    maximum-scale=1">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/
    jquery.mobile-1.2.0.min.css" />
    <script type="text/javascript" src="http://code.jquery.com/
    jquery-1.8.2.min.js"></script>
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/
    jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
    <div data-role="page">
        <div data-role="header">
            <h1>Order Form</h1>
        </div>
        <div data-role="content">
            <form action="index.html" method="post">
                <div data-role="fieldcontain">
                    <label for="searchStore">Search the Store:</label>
                    <input type="search" name="searchStore" id="searchStore">
                </div>
                <div data-role="fieldcontain">
                    <fieldset data-role="controlgroup">

                        <legend>Widget Shape:</legend>
                        <input type="radio" name="widgetShape" id="widgetShape-round"
                        value="round" checked>
                        <label for="widgetShape-round">Round</label>
                        <input type="radio" name="widgetShape" id="widgetShape-square"
                        value="square">
                        <label for="widgetShape-square">Square</label>
                    </fieldset>
                </div>
                <div data-role="fieldcontain">
                    <fieldset data-role="controlgroup">
                        <legend>Turbo Mode:</legend>
                        <input type="checkbox" name="turboMode" id="turboMode-on" value="on">
                        <label for="turboMode-on">On</label>
                    </fieldset>
                </div>
                
                
                <div...