Tizen 2.1 base
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.0.1pre / 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/" />  
8         <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
9         <script src="../../js/jquery.js"></script>
10         <script src="../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
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" class="ui-btn-right jqm-home">Home</a>
21         </div><!-- /header -->
22
23         <div data-role="content" data-theme="c">
24                 <div class="content-primary">
25                 
26                 <form action="index.html" method="get">
27                         
28                         <h2>You Chose:</h2>
29
30                         <div class="ui-body ui-body-d ui-corner-all">
31
32                         <?php
33                                 echo "<p> " . $_REQUEST['shipping'] . "</p>";
34                         ?>
35                         
36                         </div>
37                         
38                         <a href="forms-sample.html" data-role="button" data-theme="b" data-icon="arrow-l">Change shipping method</a>
39
40         </form>
41         
42         </div><!--/content-primary -->          
43         
44         <div class="content-secondary">
45                 
46                 <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
47                         
48                                 <h3>More in this section</h3>
49                                 
50                                 <ul data-role="listview" data-theme="c" data-dividertheme="d">
51                                 
52                                         <li data-role="list-divider">Form elements</li>
53                                         <li><a href="docs-forms.html">Form basics</a></li>
54                                         <li><a href="forms-all.html">Form element gallery</a></li>
55                                         <li><a href="textinputs/">Text inputs</a></li>
56                                         <li><a href="search/">Search inputs</a></li>
57                                         <li><a href="slider/">Slider</a></li>
58                                         <li><a href="switch/">Flip toggle switch</a></li>
59                                         <li><a href="radiobuttons/">Radio buttons</a></li>
60                                         <li><a href="checkboxes/">Checkboxes</a></li>
61                                         <li><a href="forms-selects.html">Select menus</a></li>
62                                         <li><a href="forms-themes.html">Theming forms</a></li>
63                                         <li><a href="forms-all-native.html">Native form elements</a></li>
64                                         <li data-theme="a"><a href="forms-sample.html">Submitting forms</a></li>
65                                         
66         
67                                 </ul>
68                 </div>
69         </div>          
70
71 </div><!-- /content -->
72
73 <div data-role="footer" class="footer-docs" data-theme="c">
74                 <p>&copy; 2011 The jQuery Project</p>
75 </div>
76         
77 </div><!-- /page -->
78
79 </body>
80 </html>