jQuery Mobile Framework
Find a file
2011-10-13 16:39:41 -07:00
build Update compiler/compressors 2011-10-13 16:35:06 -07:00
docs Fixes position of ‘current version’ flag on documentation index when touchOverflowEnabled is true. 2011-10-13 16:22:08 -04:00
experiments scrollview: Add "position: relative;" to class ui-scrollview-clip in order to confine scrollbars to scrollview container 2011-10-04 11:35:04 +03:00
external Update to latest QUnit. Fix event tests that were calling both asyncTest 2011-10-04 17:34:33 -04:00
js allow users to define keepnative on page elements 2011-10-13 14:53:36 -07:00
tests second half of the test fix from yesterday that was required by the root page url default 2011-10-12 11:54:07 -07:00
themes fix -moz-background-clip value so that old Firefox can understand. Fix for #2677 2011-10-13 01:17:51 +09: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 Docs: Cleaned up "Prefetching & caching pages" page 2011-09-01 16:52:48 +10:00
build.xml removed media classes JS - deprecated since Beta 1. Use CSS3 Media Queries with a polyfill instead :) Docs are updated to link to old code in case anyone still needs a backwards-port 2011-09-29 14:47:05 -04:00
combine.php remove gzip from combine 2011-09-22 14:40:59 -07:00
gitposthook.php change file permissions for git hooks 2011-04-14 12:01:27 -07:00
gitpushlatest.php Update the CDN but dont output messages 2011-05-13 15:20:19 -07:00
index.html Fixes position of ‘current version’ flag on documentation index when touchOverflowEnabled is true. 2011-10-13 16:22:08 -04:00
Makefile Update compiler/compressors 2011-10-13 16:39:41 -07:00
README.md Added a link to jsbin and jsfiddle in the submitting bugs section 2011-09-29 15:56:30 -07:00
version.txt Updated version to 1.0rc2pre 2011-10-03 14:25:13 -04:00

jQuery Mobile Framework

http://jquerymobile.com

Demos and documentation

http://jquerymobile.com/test/

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, complete version and a minified, complete version of the jQuery Mobile JavaScript and CSS files will be created in a folder named "compiled".

Submitting bugs

If you think you've found a bug, please visit the Issue tracker (https://github.com/jquery/jquery-mobile/issues) and create an issue explaining the problem and expected result. Be sure to include any relevant information for reproducing the issue, such as the browser/device (with version #), and the version of the jQuery Mobile code you're running. It also helps a lot to make sure that the bug still exists on http://jquerymobile.com/test/, as it's possible we may have fixed it already!

It is also best to include code to reproduce the bug. To do that please use jsbin or jsfiddle and include a link to it in the ticket.

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 https://gist.github.com/726275

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 have python installed (most Linux distributions) and Mac OSX, you use the built-in simple web server. Open a terminal/shell and change to the jQuery Mobile folder then type 'python -m SimpleHTTPServer', and voila you can then browse via http://localhost:8000.

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, which is also available for Windows, though you need to actually modify Apache's httpd.conf to point to your checkout: http://www.apachefriends.org/en/xampp.html You need the Rewrite (mod_rewrite.so), Expire (mod_expires.so) and Header (mod_headers.so) modules loaded.