jquery/jquery

Name: jquery

Owner: jQuery

Description: jQuery JavaScript Library

Created: 2009-04-03 15:20:14.0

Updated: 2018-01-18 16:37:51.0

Pushed: 2018-01-17 16:06:34.0

Homepage: https://jquery.com/

Size: 27590

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

jQuery ? New Wave JavaScript

Contribution Guides

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:

  1. Getting Involved
  2. Core Style Guide
  3. Writing Code for jQuery Foundation Projects
Environments in which to use jQuery
What you need to build your own jQuery

In order to build jQuery, you need to have the latest Node.js/npm and git 1.7 or later. Earlier versions might work, but are not supported.

For Windows, you have to download and install git and Node.js.

OS X users should install Homebrew. Once Homebrew is installed, run brew install git to install git, and brew install node to install Node.js.

Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source if you swing that way. Easy-peasy.

How to build your own jQuery

Clone a copy of the main jQuery git repo by running:

clone git://github.com/jquery/jquery.git

Enter the jquery directory and run the build script:

query && npm run build

The built version of jQuery will be put in the dist/ subdirectory, along with the minified copy and associated map file.

If you want to create custom build or help with jQuery development, it would be better to install grunt command line interface as a global package:

install -g grunt-cli

Make sure you have grunt installed by testing:

t -V

Now by running the grunt command, in the jquery directory, you can build a full version of jQuery, just like with an npm run build command:

t

There are many other tasks available for jQuery Core:

t -help
Modules

Special builds can be created that exclude subsets of jQuery functionality. This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used. 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.

Any module may be excluded except for core, and selector. To exclude a module, pass its path relative to the src folder (without the .js extension).

Some example modules that can be excluded are:

As a special case, you may also replace Sizzle by using a special flag grunt custom:-sizzle.

Note: Excluding Sizzle will also exclude all jQuery selector extensions (such as effects/animatedSelector and css/hiddenVisibleSelectors).

The build process shows a message for each dependent module it excludes or includes.

AMD name

As an option, you can set the module name for jQuery's AMD definition. By default, it is set to “jquery”, which plays nicely with plugins and third-party libraries, but there may be cases where you'd like to change this. Simply set the "amd" option:

t custom --amd="custom-name"

Or, to define anonymously, set the name to an empty string.

t custom --amd=""
Custom Build Examples

To create a custom build, first check out the version:

pull; git checkout VERSION

Where VERSION is the version you want to customize. Then, make sure all Node dependencies are installed:

install

Create the custom build using the grunt custom option, listing the modules to be excluded.

Exclude all ajax functionality:

t custom:-ajax

Excluding css removes modules depending on CSS: effects, offset, dimensions.

t custom:-css

Exclude a bunch of modules:

t custom:-ajax,-css,-deprecated,-dimensions,-effects,-event/alias,-offset,-wrap

For questions or requests regarding custom builds, please start a thread on the 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. The non-Sizzle selector engine currently does not pass unit tests because it is missing too much essential functionality.

Running the Unit Tests

Make sure you have the necessary dependencies:

install

Start grunt watch or npm start to auto-build jQuery as you work:

t watch

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:

Building to a different directory

To copy the built jQuery files from /dist to another directory:

t && grunt dist:/path/to/special/location/

With this example, the output files would be:

h/to/special/location/jquery.js
h/to/special/location/jquery.min.js

To add a permanent copy destination, create a file in dist/ called “.destination.json”. Inside the file, paste and customize the following:


Absolute/path/to/other/destination": true

Additionally, both methods can be combined.

Essential Git

As the source code is handled by the Git version control system, it's useful to know some features used.

Cleaning

If you want to purge your working directory back to the status of upstream, the following commands can be used (remember everything you've worked on is gone after these):

reset --hard upstream/master
clean -fdx
Rebasing

For feature/topic branches, you should always use the --rebase flag to git pull, or if you are usually handling many temporary “to be in a github pull request” branches, run the following to automate this:

config branch.autosetuprebase local

(see man git-config for more information)

Handling merge conflicts

If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature git mergetool. Even though the default tool xxdiff looks awful/old, it's rather useful.

The following are some commands that can be used there:

QUnit Reference
Test methods
ct( numAssertions );
();
t();

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.

Test assertions
value, [message] );
l( actual, expected, [message] );
qual( actual, expected, [message] );
Equal( actual, expected, [message] );
eepEqual( actual, expected, [message] );
ctEqual( actual, expected, [message] );
trictEqual( actual, expected, [message] );
ws( block, [expected], [message] );
Test Suite Convenience Methods Reference (See test/data/testinit.js)
Returns an array of elements with the given IDs
.. );

Example:

ain", "foo", "bar");

 div#main, span#foo, input#bar ]
Asserts that a selection matches the given IDs
estName, selector, [ "array", "of", "ids" ] );

Example:

heck for something", "//[a]", ["foo", "bar"]);
Fires a native DOM event without going through jQuery
Native( node, eventType )

Example:

Native( jQuery("#elem")[0], "click" );
Add random number to url to stop caching
 "some/url" );

Example:

"index.html");

data/index.html?10538358428943"


"mock.php?foo=bar");

data/mock.php?foo=bar&10538358345554"
Run tests in an iframe

Some tests may require a document other than the standard test fixture, and these can be run in a separate iframe. The actual test code and assertions remain in jQuery's main test files; only the minimal test fixture markup and setup code should be placed in the iframe file.

Iframe( testName, fileName,
nction testCallback(
  assert, jQuery, window, document,
  [ additional args ] ) {
...
);

This loads a page, constructing a url with fileName "./data/" + fileName. The iframed page determines when the callback occurs in the test by including the “/test/data/iframeTest.js” script and calling startIframeTest( [ additional args ] ) when appropriate. Often this will be after either document ready or window.onload fires.

The testCallback receives the QUnit assert object created by testIframe for this test, followed by the global jQuery, window, and document from the iframe. If the iframe code passes any arguments to startIframeTest, they follow the document argument.

Questions?

If you have any questions, please feel free to ask on the Developing jQuery Core forum or in #jquery on irc.freenode.net.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.