|
@@ -5,7 +5,12 @@
|
5
|
5
|
<title>My first jQuery Mobile code</title>
|
6
|
6
|
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
|
7
|
7
|
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
|
8
|
|
- <script type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
|
|
8
|
+ <script type="text/javascript">
|
|
9
|
+ $(document).bind('mobileinit', function () {
|
|
10
|
+ $.mobile.pageLoadErrorMessage = "Fehler, Seite nicht gefunden";
|
|
11
|
+ });
|
|
12
|
+ </script>
|
|
13
|
+ <script type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.js"></script>
|
9
|
14
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
10
|
15
|
</head>
|
11
|
16
|
<body>
|
|
@@ -14,8 +19,8 @@
|
14
|
19
|
<h1>Form with various radio buttons</h1>
|
15
|
20
|
</div>
|
16
|
21
|
<form action="wurst.php" method="get">
|
|
22
|
+ <legend>Menu type</legend>
|
17
|
23
|
<div data-role="fieldcontain">
|
18
|
|
- <legend>Menu type</legend>
|
19
|
24
|
<label for="menuNative1">Native menu, single selection</label>
|
20
|
25
|
<input type="radio" id="menuNative1" name="menuType" value="1">
|
21
|
26
|
<label for="menuNative2">Native menu, multiple selection</label>
|