mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-19 07:20:24 +00:00
This makes our include model match the include model on the CDN, and allows devs to make use of mobileinit for debugging some of the samples since that must be set up after jquery.js, but before jquery-mobile.
38 lines
No EOL
1.9 KiB
HTML
Executable file
38 lines
No EOL
1.9 KiB
HTML
Executable file
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<title>jQuery Mobile Docs - Intro</title>
|
||
<link rel="stylesheet" href="../../themes/default/" />
|
||
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
|
||
<script type="text/javascript" src="../../js/jquery.js"></script>
|
||
<script type="text/javascript" src="../../js/"></script>
|
||
</head>
|
||
<body>
|
||
|
||
<div data-role="page">
|
||
|
||
<div data-role="header">
|
||
<h1>Introduction</h1>
|
||
</div><!-- /header -->
|
||
|
||
<div data-role="content">
|
||
|
||
|
||
<p>jQuery’s mobile strategy can be summarized simply: Delivering top-of-the-line JavaScript in a unified User Interface that works across the most-used smartphone web browsers and tablet form factors.</p>
|
||
|
||
<p>The critical difference with our approach is the <a href="platforms.html">wide variety of mobile platforms we’re targeting</a> with jQuery Mobile. We’ve been working hard at bringing jQuery support to all mobile browsers that are sufficiently-capable and have at least a nominal amount of market share. In this way, we’re treating mobile web browsers exactly how we treat desktop web browsers.</p>
|
||
|
||
<p>To make this broad support possible, all pages in jQuery Mobile are built on a foundation of <strong>clean, semantic HTML</strong> to ensure compatibility with pretty much any web-enabled device. In devices that interpret CSS and JavaScript, jQuery Mobile applies <strong>progressive enhancement techniques</strong> to unobtrusively transform the semantic page into a rich, interactive experience that leverages the power of jQuery and CSS. <strong>Accessibility features</strong> such as WAI-ARIA are tightly integrated throughout the framework to provide support for screen readers and other assistive technologies.</p>
|
||
|
||
|
||
<img src="../_assets/images/ipad-palm.png" alt="Smartphone and tablet designs" style="max-width:100%; margin-top:20px;">
|
||
|
||
|
||
|
||
</div><!-- /content -->
|
||
|
||
</div><!-- /page -->
|
||
|
||
</body>
|
||
</html> |