• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D30-Sep-202112.3 KiB373250

README.md

1[jQuery](https://jquery.com/) — New Wave JavaScript
2==================================================
3
4[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjquery%2Fjquery.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fjquery%2Fjquery?ref=badge_shield)
5
6[![Gitter](https://badges.gitter.im/jquery/jquery.svg)](https://gitter.im/jquery/jquery?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
7
8Contribution Guides
9--------------------------------------
10
11In 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:
12
131. [Getting Involved](https://contribute.jquery.org/)
142. [Core Style Guide](https://contribute.jquery.org/style-guide/js/)
153. [Writing Code for jQuery Foundation Projects](https://contribute.jquery.org/code/)
16
17
18Environments in which to use jQuery
19--------------------------------------
20
21- [Browser support](https://jquery.com/browser-support/)
22- jQuery also supports Node, browser extensions, and other non-browser environments.
23
24
25What you need to build your own jQuery
26--------------------------------------
27
28To 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.
29
30For Windows, you have to download and install [git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/en/download/).
31
32macOS users should install [Homebrew](https://brew.sh/). Once Homebrew is installed, run `brew install git` to install git,
33and `brew install node` to install Node.js.
34
35Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source
36if you swing that way. Easy-peasy.
37
38
39How to build your own jQuery
40----------------------------
41
42First, [clone the jQuery git repo](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository).
43
44Then, enter the jquery directory and run the build script:
45```bash
46cd jquery && npm run build
47```
48The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file.
49
50If you want to create custom build or help with jQuery development, it would be better to install [grunt command line interface](https://github.com/gruntjs/grunt-cli) as a global package:
51
52```
53npm install -g grunt-cli
54```
55Make sure you have `grunt` installed by testing:
56```
57grunt -V
58```
59
60Now 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:
61```
62grunt
63```
64
65There are many other tasks available for jQuery Core:
66```
67grunt -help
68```
69
70### Modules
71
72Special builds can be created that exclude subsets of jQuery functionality.
73This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used.
74For 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.
75
76Any 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).
77
78Some example modules that can be excluded are:
79
80- **ajax**: All AJAX functionality: `$.ajax()`, `$.get()`, `$.post()`, `$.ajaxSetup()`, `.load()`, transports, and ajax event shorthands such as `.ajaxStart()`.
81- **ajax/xhr**: The XMLHTTPRequest AJAX transport only.
82- **ajax/script**: The `<script>` AJAX transport only; used to retrieve scripts.
83- **ajax/jsonp**: The JSONP AJAX transport only; depends on the ajax/script transport.
84- **css**: The `.css()` method. Also removes **all** modules depending on css (including **effects**, **dimensions**, and **offset**).
85- **css/showHide**:  Non-animated `.show()`, `.hide()` and `.toggle()`; can be excluded if you use classes or explicit `.css()` calls to set the `display` property. Also removes the **effects** module.
86- **deprecated**: Methods documented as deprecated but not yet removed.
87- **dimensions**: The `.width()` and `.height()` methods, including `inner-` and `outer-` variations.
88- **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`.
89- **event**: The `.on()` and `.off()` methods and all event functionality.
90- **event/trigger**: The `.trigger()` and `.triggerHandler()` methods.
91- **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods.
92- **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods.
93- **core/ready**: Exclude the ready module if you place your scripts at the end of the body. Any ready callbacks bound with `jQuery()` will simply be called immediately. However, `jQuery(document).ready()` will not be a function and `.on("ready", ...)` or similar will not be triggered.
94- **deferred**: Exclude jQuery.Deferred. This also removes jQuery.Callbacks. *Note* that modules that depend on jQuery.Deferred(AJAX, effects, core/ready) will not be removed and will still expect jQuery.Deferred to be there. Include your own jQuery.Deferred implementation or exclude those modules as well (`grunt custom:-deferred,-ajax,-effects,-core/ready`).
95- **exports/global**: Exclude the attachment of global jQuery variables ($ and jQuery) to the window.
96- **exports/amd**: Exclude the AMD definition.
97
98The build process shows a message for each dependent module it excludes or includes.
99
100##### AMD name
101
102As 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:
103
104```bash
105grunt custom --amd="custom-name"
106```
107
108Or, to define anonymously, set the name to an empty string.
109
110```bash
111grunt custom --amd=""
112```
113
114#### Custom Build Examples
115
116To create a custom build, first check out the version:
117
118```bash
119git pull; git checkout VERSION
120```
121
122Where VERSION is the version you want to customize. Then, make sure all Node dependencies are installed:
123
124```bash
125npm install
126```
127
128Create the custom build using the `grunt custom` option, listing the modules to be excluded.
129
130Exclude all **ajax** functionality:
131
132```bash
133grunt custom:-ajax
134```
135
136Excluding **css** removes modules depending on CSS: **effects**, **offset**, **dimensions**.
137
138```bash
139grunt custom:-css
140```
141
142Exclude a bunch of modules:
143
144```bash
145grunt custom:-ajax/jsonp,-css,-deprecated,-dimensions,-effects,-offset,-wrap
146```
147
148There is also a special alias to generate a build with the same configuration as the official jQuery Slim build is generated:
149```bash
150grunt custom:slim
151```
152
153For 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.
154
155Running the Unit Tests
156--------------------------------------
157
158Make sure you have the necessary dependencies:
159
160```bash
161npm install
162```
163
164Start `grunt watch` or `npm start` to auto-build jQuery as you work:
165
166```bash
167grunt watch
168```
169
170
171Run 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:
172
173- Windows: [WAMP download](http://www.wampserver.com/en/)
174- Mac: [MAMP download](https://www.mamp.info/en/downloads/)
175- Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
176- [Mongoose (most platforms)](https://code.google.com/p/mongoose/)
177
178
179
180
181Building to a different directory
182---------------------------------
183
184To copy the built jQuery files from `/dist` to another directory:
185
186```bash
187grunt && grunt dist:/path/to/special/location/
188```
189With this example, the output files would be:
190
191```bash
192/path/to/special/location/jquery.js
193/path/to/special/location/jquery.min.js
194```
195
196To add a permanent copy destination, create a file in `dist/` called ".destination.json". Inside the file, paste and customize the following:
197
198```json
199
200{
201  "/Absolute/path/to/other/destination": true
202}
203```
204
205Additionally, both methods can be combined.
206
207
208
209Essential Git
210-------------
211
212As the source code is handled by the Git version control system, it's useful to know some features used.
213
214### Cleaning ###
215
216If 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):
217
218```bash
219git reset --hard upstream/master
220git clean -fdx
221```
222
223### Rebasing ###
224
225For 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:
226
227```bash
228git config branch.autosetuprebase local
229```
230(see `man git-config` for more information)
231
232### Handling merge conflicts ###
233
234If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
235`git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
236
237The following are some commands that can be used there:
238
239* `Ctrl + Alt + M` - automerge as much as possible
240* `b` - jump to next merge conflict
241* `s` - change the order of the conflicted lines
242* `u` - undo a merge
243* `left mouse button` - mark a block to be the winner
244* `middle mouse button` - mark a line to be the winner
245* `Ctrl + S` - save
246* `Ctrl + Q` - quit
247
248[QUnit](https://api.qunitjs.com) Reference
249-----------------
250
251### Test methods ###
252
253```js
254expect( numAssertions );
255stop();
256start();
257```
258
259
260*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.
261
262### Test assertions ###
263
264
265```js
266ok( value, [message] );
267equal( actual, expected, [message] );
268notEqual( actual, expected, [message] );
269deepEqual( actual, expected, [message] );
270notDeepEqual( actual, expected, [message] );
271strictEqual( actual, expected, [message] );
272notStrictEqual( actual, expected, [message] );
273throws( block, [expected], [message] );
274```
275
276
277Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/master/test/data/testinit.js))
278------------------------------
279
280### Returns an array of elements with the given IDs ###
281
282```js
283q( ... );
284```
285
286Example:
287
288```js
289q("main", "foo", "bar");
290
291=> [ div#main, span#foo, input#bar ]
292```
293
294### Asserts that a selection matches the given IDs ###
295
296```js
297t( testName, selector, [ "array", "of", "ids" ] );
298```
299
300Example:
301
302```js
303t("Check for something", "//[a]", ["foo", "bar"]);
304```
305
306
307
308### Fires a native DOM event without going through jQuery ###
309
310```js
311fireNative( node, eventType )
312```
313
314Example:
315
316```js
317fireNative( jQuery("#elem")[0], "click" );
318```
319
320### Add random number to url to stop caching ###
321
322```js
323url( "some/url" );
324```
325
326Example:
327
328```js
329url("index.html");
330
331=> "data/index.html?10538358428943"
332
333
334url("mock.php?foo=bar");
335
336=> "data/mock.php?foo=bar&10538358345554"
337```
338
339
340### Run tests in an iframe ###
341
342Some tests may require a document other than the standard test fixture, and
343these can be run in a separate iframe. The actual test code and assertions
344remain in jQuery's main test files; only the minimal test fixture markup
345and setup code should be placed in the iframe file.
346
347```js
348testIframe( testName, fileName,
349  function testCallback(
350      assert, jQuery, window, document,
351	  [ additional args ] ) {
352	...
353  } );
354```
355
356This loads a page, constructing a url with fileName `"./data/" + fileName`.
357The iframed page determines when the callback occurs in the test by
358including the "/test/data/iframeTest.js" script and calling
359`startIframeTest( [ additional args ] )` when appropriate. Often this
360will be after either document ready or `window.onload` fires.
361
362The `testCallback` receives the QUnit `assert` object created by `testIframe`
363for this test, followed by the global `jQuery`, `window`, and `document` from
364the iframe. If the iframe code passes any arguments to `startIframeTest`,
365they follow the `document` argument.
366
367
368Questions?
369----------
370
371If you have any questions, please feel free to ask on the
372[Developing jQuery Core forum](https://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.
373