JQuery mobile: check offline

I am new to jQuery Mobile. I really like it, but I have two main questions:

1- Can I check the OFFLINE app on my iPhone?

I know how to see the application when I'm connected to the Internet, even how to create an icon. But I do not see how to see the application. I do not have internet connection.

2- Suppose I can send html and css made using jQuery Mobile to Apple as any application. And it will work offline. Is it correct?

Does anyone have experience with apps with jQuery Mobile and work in the app store?

+3
source share
2 answers

, jQuery Mobile. .

  • JQuery-1.8.0.min.js
  • jquery.mobile-1.2.0.min.js

, jQuery Mobile CSS

  • jquery.mobile.structure-1.2.0.min.css

, CSS ( CSS jQuery ) , . CSS

  • taifun.min.css

/images.

<!DOCTYPE html>
<html>
<head>
  <title>Offline</title>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="taifun.min.css" />
  <link rel="stylesheet" href="jquery.mobile.structure-1.2.0.min.css" />
  <script src="jquery-1.8.0.min.js"></script>
  <script src="jquery.mobile-1.2.0.min.js"></script>
</head>

<body>
  <div data-role="content">
    <h1>I'm a jQuery Mobile offline page</h1>
    <ul data-role="listview">
      <li><a href="#">Acura</a></li>
      <li><a href="#">Audi</a></li>
      <li><a href="#">BMW</a></li>
      <li><a href="#">Cadillac</a></li>
    </ul>
  </div><!--/content -->
</body>
</html>

HTC Desire

screenshot

+5
  • @Brice Favre - "" iPhone Wi-Fi.
  • "", , PhoneGap, (jQuery, jQuery Mobile) CSS , , - . . PhoneGap.
+1

All Articles