2 – Create The HTML5 Template

Create A New HTML5 File You can create a new HTML 5 document in Dreamweaver (Page Type: HTML, DocType: HTML5) and set it up as follows: <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <!—– SETUP JQUERY —–> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" /> <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> <script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js" > </script> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" > </head> […]

Read More

1 – jQuery Mobile Framework Files

Decide on Host or link to the jQuery framework files Hosting The Files With Your Webapp Download the following: The jQuery Mobile package from http://jquerymobile.com/download/ Get the latest ZIP package. The jQuery core from http://jquery.com The production version is recommended. Inside the package there are two types of JavaScript / CSS files: one with the min suffix […]

Read More