accessibility.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 - Accessibility</title>
  7. <link rel="stylesheet" href="../../jquery.mobile-1.0.1.min.css" />
  8. <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
  9. <script src="../../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="../../jquery.mobile-1.0.1.min.js"></script>
  13. </head>
  14. <body>
  15. <div data-role="page" class="type-interior">
  16. <div data-role="header" data-theme="f">
  17. <h1>Accessibility</h1>
  18. <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
  19. </div><!-- /header -->
  20. <div data-role="content">
  21. <div class="content-primary">
  22. <h2>Accessibility</h2>
  23. <p>jQuery Mobile is built upon standard, semantic HTML, allowing pages to be accessible to the broadest range of devices possible. For A-Grade browsers, many of the components in jQuery Mobile leverage techniques such as focus management, keyboard navigation, and HTML attributes specified in the W3C's <a href="http://www.w3.org/TR/wai-aria/">WAI-ARIA</a> specification.</p>
  24. <p>By utilizing these techniques, we do our best to ensure an accessible experience to users with disabilities such as blindness, who may use screen readers (like <em>VoiceOver</em>, on Apple's iPhone device) or other assistive technology to access the web.</p>
  25. <p>While our accessibility implementation is currently a work in progress, we aim to provide a fully accessible suite of components for version 1.0.</p>
  26. </div>
  27. <div class="content-secondary">
  28. <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
  29. <h3>More in this section</h3>
  30. <ul data-role="listview" data-theme="c" data-dividertheme="d">
  31. <li data-role="list-divider">Overview</li>
  32. <li><a href="../../docs/about/intro.html">Intro to jQuery Mobile</a></li>
  33. <li><a href="../../docs/about/getting-started.html">Quick start guide</a></li>
  34. <li><a href="../../docs/about/features.html">Features</a></li>
  35. <li data-theme="a"><a href="../../docs/about/accessibility.html">Accessibility</a></li>
  36. <li><a href="../../docs/about/platforms.html">Supported platforms</a></li>
  37. </ul>
  38. </div>
  39. </div>
  40. </div><!-- /content -->
  41. <div data-role="footer" class="footer-docs" data-theme="c">
  42. <p>&copy; 2011-2012 The jQuery Project</p>
  43. </div>
  44. </div><!-- /content -->
  45. </div><!-- /page -->
  46. </body>
  47. </html>