0a4fce6a42b32dfe376e9273bafb0e83f249dc45
[framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.1.0 / docs / forms / forms-sample-response.php
1 <!DOCTYPE html> 
2 <html> 
3         <head>
4         <meta charset="utf-8">
5         <meta name="viewport" content="width=device-width, initial-scale=1"> 
6         <title>jQuery Mobile Docs - Sample form response</title> 
7         <link rel="stylesheet"  href="../../css/themes/default/jquery.mobile.css" />  
8         <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
9         <script src="../../js/jquery.js"></script>
10         
11         <script src="../_assets/js/jqm-docs.js"></script>
12         <script src="../../js/"></script>
13 </head> 
14 <body> 
15
16         <div data-role="page" class="type-interior">
17
18                 <div data-role="header" data-theme="e">
19                 <h1>Sample form response</h1>
20                 <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse">Home</a>
21                 <a href="../nav.html" data-icon="search" data-iconpos="notext" data-rel="dialog" data-transition="fade">Search</a>
22         </div><!-- /header -->
23
24         <div data-role="content" data-theme="c">
25                 <div class="content-primary">
26                 
27                 <form action="index.html" method="get">
28                         
29                         <h2>You Chose:</h2>
30
31                         <div class="ui-body ui-body-d ui-corner-all">
32
33                         <?php
34                                 echo "<p> " . $_REQUEST['shipping'] . "</p>";
35                         ?>
36                         
37                         </div>
38                         
39                         <a href="forms-sample.html" data-role="button" data-theme="b" data-icon="arrow-l">Change shipping method</a>
40
41         </form>
42         
43         </div><!--/content-primary -->          
44         
45         <div class="content-secondary">
46                 
47                 <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
48                         
49                                 <h3>More in this section</h3>
50                                 
51                                 <ul data-role="listview" data-theme="c" data-dividertheme="d">
52                                 
53                                         <li data-role="list-divider">Form elements</li>
54                                         <li><a href="docs-forms.html">Form basics</a></li>
55                                         <li><a href="forms-all.html">Form element gallery</a></li>
56                                         <li><a href="textinputs/">Text inputs</a></li>
57                                         <li><a href="search/">Search inputs</a></li>
58                                         <li><a href="slider/">Slider</a></li>
59                                         <li><a href="switch/">Flip toggle switch</a></li>
60                                         <li><a href="radiobuttons/">Radio buttons</a></li>
61                                         <li><a href="checkboxes/">Checkboxes</a></li>
62                                         <li><a href="forms-selects.html">Select menus</a></li>
63                                         <li><a href="forms-themes.html">Theming forms</a></li>
64                                         <li><a href="forms-all-native.html">Native form elements</a></li>
65                                         <li data-theme="a"><a href="forms-sample.html">Submitting forms</a></li>
66                                         
67         
68                                 </ul>
69                 </div>
70         </div>          
71
72 </div><!-- /content -->
73
74 <div data-role="footer" class="footer-docs" data-theme="c">
75                 <p>&copy; 2011-12 The jQuery Foundation</p>
76 </div>
77         
78 </div><!-- /page -->
79
80 </body>
81 </html>