Skip to content

Commit db38093

Browse files
Amy Etheredgeagcolom
Amy Etheredge
authored andcommitted
Mobile: jQuery Mobile version number updates
Fixes jquerygh-676 Closes jquerygh-677
1 parent 7146915 commit db38093

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

page/jquery-mobile/getting-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jQuery Mobile provides a set of touch-friendly UI widgets and an Ajax-powered na
99

1010
To get started, you can simply paste the template below in your favorite text editor, save, and open the document in a browser.
1111

12-
In the `<head>` of this template, a meta `viewport` tag sets the screen width to the pixel width of the device. References to jQuery, jQuery Mobile, and the mobile theme stylesheet from the CDN add all the styles and scripts. jQuery Mobile 1.2 (1.2.0) works with versions of jQuery core from 1.7.0 to 1.8.2.
12+
In the `<head>` of this template, a meta `viewport` tag sets the screen width to the pixel width of the device. References to jQuery, jQuery Mobile, and the mobile theme stylesheet from the CDN add all the styles and scripts. jQuery Mobile 1.4 works with versions of jQuery core 1.8 and newer.
1313

1414
In the `<body>`, a div with a `data-role` of `page` is the wrapper used to delineate a page. A header bar (`data-role="header"`), a content region (`data-role="content"`) and a footer bar (`data-role="footer"`) are added inside to create a basic page (all three are optional). These `data-` attributes are HTML5 attributes used throughout jQuery Mobile to transform basic markup into an enhanced and styled widget.
1515

@@ -19,9 +19,9 @@ In the `<body>`, a div with a `data-role` of `page` is the wrapper used to delin
1919
<head>
2020
<title>My Page</title>
2121
<meta name="viewport" content="width=device-width, initial-scale=1">
22-
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
23-
<script src="https://code.jquery.com/jquery-1.8.2.min.js"></script>
24-
<script src="https://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
22+
<link rel="stylesheet" href="https://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.css">
23+
<script src="https://code.jquery.com/jquery-[version].min.js"></script>
24+
<script src="https://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.js"></script>
2525
</head>
2626
<body>
2727
<div data-role="page">

0 commit comments

Comments
 (0)