jQuery Mobile Framework
Find a file
Todd Parker 1fe2e4434a Merge pull request #3013 from agcolom/patch-31
Update docs/pages/page-scripting.html
2011-11-10 04:38:38 -08:00
build Update compiler/compressors 2011-10-13 16:35:06 -07:00
css moved info text to license-info.txt 2011-11-09 16:00:25 -08:00
docs Update docs/pages/page-scripting.html 2011-11-10 11:05:27 +00:00
experiments Unify css and js references for doc changes 2011-11-08 18:39:49 -08:00
external Update to latest QUnit. Fix event tests that were calling both asyncTest 2011-10-04 17:34:33 -04:00
js correction to license include in js/index.php 2011-11-09 22:36:00 -08:00
tests test for page load text area autogrow 2011-11-09 11:35:22 -08:00
tools First pass implementation of a page event logger bookmarklet to help us quickly diagnose navigation problems for external jQuery Mobile sites. Users can either follow the instructions for using/setting up the bookmarklet in log-page-events.html, or simply include the log-page-events.js directly in their source. 2011-10-07 09:31:28 -07:00
.gitignore Step 1 Remove unneeded PHP hook files 2011-11-08 15:00:35 -08:00
combine.php remove gzip from combine 2011-09-22 14:40:59 -07:00
GPL-LICENSE.txt Update to add license to root, update individual files to not have license, add license to built and testing files 2011-11-08 15:43:36 -08:00
index.html Added a data tribute reference page, linked it up 2011-11-03 22:56:54 -04:00
LICENSE-INFO.txt moved info text to license-info.txt 2011-11-09 16:00:25 -08:00
Makefile Merge in makefile 2011-11-09 16:06:33 -08:00
MIT-LICENSE.txt Update to add license to root, update individual files to not have license, add license to built and testing files 2011-11-08 15:43:36 -08:00
README.md Update the README to include instructions for including a custom theme 2011-11-09 14:56:38 -08:00
version.txt Releasing 1.0rc2. 2011-10-19 13:48:38 -07:00

jQuery Mobile Framework

Official Site: http://jquerymobile.com

Demos and Documentation

How to build your own jQuery Mobile CSS and JS files

Clone this repo and build the js and css files (you'll need Git and Make installed):

git clone git://github.com/jquery/jquery-mobile.git
cd jquery-mobile
make

A full version and a minified version of the jQuery Mobile JavaScript and CSS files will be created in a folder named "compiled". There is also now a Structure only css file so you can add your own theme on top of it.

Submitting bugs

If you think you've found a bug, please report it by following these instructions:

  1. Visit the Issue tracker: https://github.com/jquery/jquery-mobile/issues
  2. Create an issue explaining the problem and expected result
    • Be sure to include any relevant information for reproducing the issue
    • Include information such as:
      • Browser/device (with version #)
      • The version of the jQuery Mobile code you're running
      • If you are running from a git version, include the date and/or hash number
    • Make sure that the bug still exists at http://jquerymobile.com/test/ as it may be fixed already
    • You can use the CDN hosted JS and CSS files to test in your own code by using:
    • Include a link to some code of the bug in action. You can use either of these services to host your code
  3. Submit the issue.

Recommended: JS Bin issue template with instructions

Submitting patches

To contribute code and bug fixes to jQuery Mobile: fork this project on Github, make changes to the code in your fork, and then send a "pull request" to notify the team of updates that are ready to be reviewed for inclusion.

Detailed instructions can be found at jQuery Mobile Patching

Running the jQuery Mobile demos & docs locally

To preview locally, you'll need to clone a local copy of this repository and point your Apache & PHP webserver at its root directory (a webserver is required, as PHP and .htaccess are used for combining development files).

If you don't currently have a webserver running locally, there are a few options.

If you're on a Mac, you can try dropping jQuery Mobile into your sites folder and turning on Web Sharing via System Prefs. From there, you'll find a URL where you can browse folders in your sites directory from a browser.

Another quick way to get up and running is to download and install MAMP for Mac OSX. Once installed, just open MAMP, click preferences, go to the Apache tab, and select your local jQuery Mobile folder as the root. Then you can open a browser to http://localhost:8888 to preview the code.

Another alternative is XAMPP (Mac, Windows). You need to actually modify Apache's httpd.conf to point to your checkout: Instructions

You need the following Apache modules loaded:

  • Rewrite (mod_rewrite.so)
  • Expire (mod_expires.so)
  • Header (mod_headers.so)

Building With A Custom Theme

To use a custom theme in your own build, you'll need Make installed. You can find the themes in the CSS/Themes folder. To create a new theme:

  1. Copy the Default folder from CSS/Themes to a new folder in the same location. The name of the folder will be the theme's name. For testing locally, make sure the index.php file is copied as well.

  2. Edit the jquery.mobile.theme.css file so it contains your custom fonts and colors.

  3. Once you are done editing your files and saving them, open a terminal.

  4. Navigate to the jQuery-Mobile folder's root.

  5. Run the following command to build jQuery-Mobile (THEME is the name of the folder for your theme from step 1.):

    make THEME=YourThemeName

  6. The compiled files will be located in the "compiled" folder in the root of jQuery-Mobile.