jQM - data role none Demo

by Dragan Gaić

HTML

<link rel="stylesheet" href="http://jeromeetienne.github.com/jquery-mobile-960/css/jquery-mobile-fluid960.css">
<!DOCTYPE html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta name="viewport" content="width=device-width"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" /> 
        <script>
            $(document).bind('mobileinit',function(){
                $.mobile.keepNative = "select,input";
                //$.mobile.page.prototype.options.keepNative = "select,input";
            });        
        </script>
        <script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>    
    </head>
    <body>
        <div data-role="page" id="index">
            <div data-theme="a" data-role="header">
                <h3>
                    First Page
                </h3>
                <a href="#second" class="ui-btn-right">Next</a>
            </div>
            
            <div data-role="content">
                <form method="get" action="/show.php?" target="showframe" id="custom-form">
                    <select name="week">
                        <option value="1">Week</option>
                    </select>
                    <select name="id">
                        <option value="1">ID</option>
                    </select>
                    <select name="id">
                        <option value="1">ID</option>
                    </select>                
                    <a data-role="button" id="lonely-buttton">Lonely Buttton</a>
                </form>        
            </div>
            
            <div data-theme="a" data-role="footer" data-position="fixed">
                
            </div>
        </div>    
    </body>
</html>

CSS

#text {
    border-radius: 0 !important;
}