1 [jQuery](http://jquery.com/) - New Wave JavaScript
2 ==================================================
5 --------------------------------------
7 In the spirit of open source software development, jQuery always encourages community code contribution. To help you get started and before you jump into writing code, be sure to read these important contribution guidelines thoroughly:
9 1. [Getting Involved](http://docs.jquery.com/Getting_Involved)
10 2. [Core Style Guide](http://docs.jquery.com/JQuery_Core_Style_Guidelines)
11 3. [Tips For Bug Patching](http://docs.jquery.com/Tips_for_jQuery_Bug_Patching)
14 What you need to build your own jQuery
15 --------------------------------------
17 In order to build jQuery, you need to have Node.js/npm latest and git 1.7 or later.
18 (Earlier versions might work OK, but are not tested.)
20 For Windows you have to download and install [git](http://git-scm.com/downloads) and [Node.js](http://nodejs.org/download/).
22 Mac OS users should install [Homebrew](http://mxcl.github.com/homebrew/). Once Homebrew is installed, run `brew install git` to install git,
23 and `brew install node` to install Node.js.
25 Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source
26 if you swing that way. Easy-peasy.
29 How to build your own jQuery
30 ----------------------------
32 First, clone a copy of the main jQuery git repo by running:
35 git clone git://github.com/jquery/jquery.git
38 Install the [grunt-cli](http://gruntjs.com/getting-started#installing-the-cli) and [bower](http://bower.io/) packages if you haven't before. These should be done as global installs:
41 npm install -g grunt-cli bower
44 Make sure you have `grunt` and `bower` installed by testing:
51 Enter the jquery directory and install the Node and Bower dependencies, this time *without* specifying a global(-g) install:
54 cd jquery && npm install
57 Then, to get a complete, minified (w/ Uglify.js), linted (w/ JSHint) version of jQuery, type the following:
63 The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file.
68 Special builds can be created that exclude subsets of jQuery functionality.
69 This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used.
70 For example, an app that only used JSONP for `$.ajax()` and did not need to calculate offsets or positions of elements could exclude the offset and ajax/xhr modules. The current modules that can be excluded are:
72 - **ajax**: All AJAX functionality: `$.ajax()`, `$.get()`, `$.post()`, `$.ajaxSetup()`, `.load()`, transports, and ajax event shorthands such as `.ajaxStart()`.
73 - **ajax/xhr**: The XMLHTTPRequest AJAX transport only.
74 - **ajax/script**: The `<script>` AJAX transport only; used to retrieve scripts.
75 - **ajax/jsonp**: The JSONP AJAX transport only; depends on the ajax/script transport.
76 - **css**: The `.css()` method plus non-animated `.show()`, `.hide()` and `.toggle()`.
77 - **deprecated**: Methods documented as deprecated but not yet removed; currently only `.andSelf()`.
78 - **dimensions**: The `.width()` and `.height()` methods, including `inner-` and `outer-` variations.
79 - **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`.
80 - **event-alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`.
81 - **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods.
82 - **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods.
84 The grunt build process is aware of dependencies across modules. If you explicitly remove a module, its dependent modules will be removed as well. For example, excluding the css module also excludes effects, since the effects module uses `.css()` to animate CSS properties. These dependencies are listed in Gruntfile.js and the build process shows a message for each dependent module it excludes.
86 To create a custom build of the latest stable version, first check out the version:
89 git pull; git checkout $(git describe --abbrev=0 --tags)
92 Then, make sure all Node dependencies are installed:
98 Create the custom build, use the `grunt custom` option, listing the modules to be excluded. Examples:
100 Exclude all **ajax** functionality:
106 Exclude **css**, **effects**, **offset**, **dimensions**, and **position**. Excluding **css** automatically excludes its dependent modules:
109 grunt custom:-css,-position
112 Exclude **all** optional modules:
115 grunt custom:-ajax,-css,-deprecated,-dimensions,-effects,-event-alias,-offset,-wrap
118 For questions or requests regarding custom builds, please start a thread on the [Developing jQuery Core](https://forum.jquery.com/developing-jquery-core) section of the forum. Due to the combinatorics and custom nature of these builds, they are not regularly tested in jQuery's unit test process.
120 Running the Unit Tests
121 --------------------------------------
123 Make sure you have the necessary dependencies:
129 Start `grunt watch` to auto-build jQuery as you work:
132 cd jquery && grunt watch
136 Run the unit tests with a local server that supports PHP. Ensure that you run the site from the root directory, not the "test" directory. No database is required. Pre-configured php local servers are available for Windows and Mac. Here are some options:
138 - Windows: [WAMP download](http://www.wampserver.com/en/)
139 - Mac: [MAMP download](http://www.mamp.info/en/index.html)
140 - Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
141 - [Mongoose (most platforms)](http://code.google.com/p/mongoose/)
146 Building to a different directory
147 ---------------------------------
149 To copy the built jQuery files from `/dist` to another directory:
152 grunt && grunt dist:/path/to/special/location/
154 With this example, the output files would be:
157 /path/to/special/location/jquery.js
158 /path/to/special/location/jquery.min.js
161 To add a permanent copy destination, create a file in `dist/` called ".destination.json". Inside the file, paste and customize the following:
166 "/Absolute/path/to/other/destination": true
170 Additionally, both methods can be combined.
177 As the source code is handled by the version control system Git, it's useful to know some features used.
181 If you want to purge your working directory back to the status of upstream, following commands can be used (remember everything you've worked on is gone after these):
184 git reset --hard upstream/master
190 For feature/topic branches, you should always used the `--rebase` flag to `git pull`, or if you are usually handling many temporary "to be in a github pull request" branches, run following to automate this:
193 git config branch.autosetuprebase local
195 (see `man git-config` for more information)
197 ### handling merge conflicts ###
199 If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
200 `git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
202 Following are some commands that can be used there:
204 * `Ctrl + Alt + M` - automerge as much as possible
205 * `b` - jump to next merge conflict
206 * `s` - change the order of the conflicted lines
207 * `u` - undo an merge
208 * `left mouse button` - mark a block to be the winner
209 * `middle mouse button` - mark a line to be the winner
213 [QUnit](http://docs.jquery.com/QUnit) Reference
219 expect( numAssertions );
225 note: QUnit's eventual addition of an argument to stop/start is ignored in this test suite so that start and stop can be passed as callbacks without worrying about their parameters
227 ### Test assertions ###
231 ok( value, [message] );
232 equal( actual, expected, [message] );
233 notEqual( actual, expected, [message] );
234 deepEqual( actual, expected, [message] );
235 notDeepEqual( actual, expected, [message] );
236 strictEqual( actual, expected, [message] );
237 notStrictEqual( actual, expected, [message] );
238 raises( block, [expected], [message] );
242 Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/master/test/data/testinit.js))
243 ------------------------------
245 ### Returns an array of elements with the given IDs ###
254 q("main", "foo", "bar");
256 => [ div#main, span#foo, input#bar ]
259 ### Asserts that a selection matches the given IDs ###
262 t( testName, selector, [ "array", "of", "ids" ] );
268 t("Check for something", "//[a]", ["foo", "baar"]);
273 ### Fires a native DOM event without going through jQuery ###
276 fireNative( node, eventType )
282 fireNative( jQuery("#elem")[0], "click" );
285 ### Add random number to url to stop caching ###
288 url( "some/url.php" );
294 url("data/test.html");
296 => "data/test.html?10538358428943"
299 url("data/test.php?foo=bar");
301 => "data/test.php?foo=bar&10538358345554"
305 ### Load tests in an iframe ###
307 Loads a given page constructing a url with fileName: `"./data/" + fileName + ".html"`
308 and fires the given callback on jQuery ready (using the jQuery loading from that page)
309 and passes the iFrame's jQuery to the callback.
312 testIframe( fileName, testName, callback );
318 callback( jQueryFromIFrame, iFrameWindow, iFrameDocument );
321 ### Load tests in an iframe (window.iframeCallback) ###
323 Loads a given page constructing a url with fileName: `"./data/" + fileName + ".html"`
324 The given callback is fired when window.iframeCallback is called by the page
325 The arguments passed to the callback are the same as the
326 arguments passed to window.iframeCallback, whatever that may be
329 testIframeWithCallback( testName, fileName, callback );
335 If you have any questions, please feel free to ask on the
336 [Developing jQuery Core forum](http://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.