mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-04 12:54:41 +00:00
Fixed a couple of spots that had the following invalid markup:
<pre></code>
This commit is contained in:
parent
ecf3e8a1f9
commit
5961818bb3
1 changed files with 3 additions and 3 deletions
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
<p>A jQuery Mobile site must start with an HTML5 'doctype' to take full advantage of all of the framework's features. (Older devices with browsers that don't understand HTML5 will safely ignore the 'doctype' and various custom attributes.) In the 'head', references to jQuery, jQuery Mobile and the mobile theme CSS are all required to start things off:</p>
|
||||
|
||||
<pre></code>
|
||||
<pre><code>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
<p>Putting it all together, this is the standard boilerplate page template you should start with:</p>
|
||||
|
||||
<pre></code>
|
||||
<pre><code>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
|
||||
<p>Here is an example of a 2 "page" site built with two jQuery Mobile divs navigated by linking to an ID placed on each page wrapper. Note that the IDs on the page wrappers are only needed to support the internal page linking, and are optional if each page is a separate HTML document. Here is what two pages look inside the <code>body</code> element.</p>
|
||||
|
||||
<pre></code>
|
||||
<pre><code>
|
||||
<body>
|
||||
|
||||
<!-- Start of first page -->
|
||||
|
|
|
|||
Loading…
Reference in a new issue