JSFiddle - React, Tailwind, and code Playground

by olli

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css">
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
<script src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<!DOCTYPE html>
<html>
    <head>
        <title>jQuery Mobile Inline Buttons</title>
    </head>
    <body>
        
        <div data-role="page" id="master">
            <div data-role="header">
                <h1>jQuery Mobile Inline Buttons</h1>
            </div>
            <div data-role="content" id="content">
                <input type="text" id="first"/>
                <input type="text" id="second"/>
            </div>
        </div>
    </body>
</html>

JavaScript

$(document).ready(function() {
    $('#master').live('pagecreate', function(event) {
        alert('pageshow');
        $('#login_password').val('');
        $('#login_username').focus().val('');
    });
});