@types/jquery 2.0.36 → 2.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
jquery/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // Type definitions for jQuery 1.10.x / 2.0.x
2
2
  // Project: http://jquery.com/
3
- // Definitions by: Boris Yankov <https://github.com/borisyankov/>, Christian Hoffmeister <https://github.com/choffmeister>, Steve Fenton <https://github.com/Steve-Fenton>, Diullei Gomes <https://github.com/Diullei>, Tass Iliopoulos <https://github.com/tasoili>, Jason Swearingen <https://github.com/jasons-novaleaf>, Sean Hill <https://github.com/seanski>, Guus Goossens <https://github.com/Guuz>, Kelly Summerlin <https://github.com/ksummerlin>, Basarat Ali Syed <https://github.com/basarat>, Nicholas Wolverson <https://github.com/nwolverson>, Derek Cicerone <https://github.com/derekcicerone>, Andrew Gaspar <https://github.com/AndrewGaspar>, James Harrison Fisher <https://github.com/jameshfisher>, Seikichi Kondo <https://github.com/seikichi>, Benjamin Jackman <https://github.com/benjaminjackman>, Poul Sorensen <https://github.com/s093294>, Josh Strobl <https://github.com/JoshStrobl>, John Reilly <https://github.com/johnnyreilly/>, Dick van den Brink <https://github.com/DickvdBrink>
3
+ // Definitions by: Boris Yankov <https://github.com/borisyankov/>, Christian Hoffmeister <https://github.com/choffmeister>, Steve Fenton <https://github.com/Steve-Fenton>, Diullei Gomes <https://github.com/Diullei>, Tass Iliopoulos <https://github.com/tasoili>, Jason Swearingen <https://github.com/jasons-novaleaf>, Sean Hill <https://github.com/seanski>, Guus Goossens <https://github.com/Guuz>, Kelly Summerlin <https://github.com/ksummerlin>, Basarat Ali Syed <https://github.com/basarat>, Nicholas Wolverson <https://github.com/nwolverson>, Derek Cicerone <https://github.com/derekcicerone>, Andrew Gaspar <https://github.com/AndrewGaspar>, James Harrison Fisher <https://github.com/jameshfisher>, Seikichi Kondo <https://github.com/seikichi>, Benjamin Jackman <https://github.com/benjaminjackman>, Poul Sorensen <https://github.com/s093294>, Josh Strobl <https://github.com/JoshStrobl>, John Reilly <https://github.com/johnnyreilly/>, Dick van den Brink <https://github.com/DickvdBrink>, Thomas Schulz <https://github.com/King2500>
4
4
  // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
5
 
6
6
  /* *****************************************************************************
@@ -21,6 +21,7 @@ and limitations under the License.
21
21
 
22
22
  /**
23
23
  * Interface for the AJAX setting that will configure the AJAX request
24
+ * @see {@link https://api.jquery.com/jQuery.ajax/#jQuery-ajax-settings}
24
25
  */
25
26
  interface JQueryAjaxSettings {
26
27
  /**
@@ -66,7 +67,7 @@ interface JQueryAjaxSettings {
66
67
  */
67
68
  crossDomain?: boolean;
68
69
  /**
69
- * Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below).
70
+ * Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be key-value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below).
70
71
  */
71
72
  data?: any;
72
73
  /**
@@ -110,7 +111,7 @@ interface JQueryAjaxSettings {
110
111
  */
111
112
  method?: string;
112
113
  /**
113
- * A mime type to override the XHR mime type. (version added: 1.5.1)
114
+ * A MIME type to override the XHR MIME type. (version added: 1.5.1)
114
115
  */
115
116
  mimeType?: string;
116
117
  /**
@@ -138,7 +139,7 @@ interface JQueryAjaxSettings {
138
139
  */
139
140
  timeout?: number;
140
141
  /**
141
- * Set this to true if you wish to use the traditional style of param serialization.
142
+ * Set this to true if you wish to use the traditional style of parameter serialization.
142
143
  */
143
144
  traditional?: boolean;
144
145
  /**
@@ -165,6 +166,7 @@ interface JQueryAjaxSettings {
165
166
 
166
167
  /**
167
168
  * Interface for the jqXHR object
169
+ * @see {@link https://api.jquery.com/jQuery.ajax/#jqXHR}
168
170
  */
169
171
  interface JQueryXHR extends XMLHttpRequest, JQueryPromise<any> {
170
172
  /**
@@ -182,7 +184,7 @@ interface JQueryXHR extends XMLHttpRequest, JQueryPromise<any> {
182
184
  */
183
185
  then<R>(doneCallback: (data: any, textStatus: string, jqXHR: JQueryXHR) => R|JQueryPromise<R>, failCallback?: (jqXHR: JQueryXHR, textStatus: string, errorThrown: any) => void): JQueryPromise<R>;
184
186
  /**
185
- * Property containing the parsed response if the response Content-Type is json
187
+ * Property containing the parsed response if the response content type is json
186
188
  */
187
189
  responseJSON?: any;
188
190
  /**
@@ -193,33 +195,39 @@ interface JQueryXHR extends XMLHttpRequest, JQueryPromise<any> {
193
195
 
194
196
  /**
195
197
  * Interface for the JQuery callback
198
+ * @see {@link https://api.jquery.com/category/callbacks-object/}
196
199
  */
197
200
  interface JQueryCallback {
198
201
  /**
199
202
  * Add a callback or a collection of callbacks to a callback list.
200
203
  *
201
204
  * @param callbacks A function, or array of functions, that are to be added to the callback list.
205
+ * @see {@link https://api.jquery.com/callbacks.add/}
202
206
  */
203
207
  add(callbacks: Function): JQueryCallback;
204
208
  /**
205
209
  * Add a callback or a collection of callbacks to a callback list.
206
210
  *
207
211
  * @param callbacks A function, or array of functions, that are to be added to the callback list.
212
+ * @see {@link https://api.jquery.com/callbacks.add/}
208
213
  */
209
214
  add(callbacks: Function[]): JQueryCallback;
210
215
 
211
216
  /**
212
217
  * Disable a callback list from doing anything more.
218
+ * @see {@link https://api.jquery.com/callbacks.disable/}
213
219
  */
214
220
  disable(): JQueryCallback;
215
221
 
216
222
  /**
217
223
  * Determine if the callbacks list has been disabled.
224
+ * @see {@link https://api.jquery.com/callbacks.disabled/}
218
225
  */
219
226
  disabled(): boolean;
220
227
 
221
228
  /**
222
229
  * Remove all of the callbacks from a list.
230
+ * @see {@link https://api.jquery.com/callbacks.empty/}
223
231
  */
224
232
  empty(): JQueryCallback;
225
233
 
@@ -227,11 +235,13 @@ interface JQueryCallback {
227
235
  * Call all of the callbacks with the given arguments
228
236
  *
229
237
  * @param arguments The argument or list of arguments to pass back to the callback list.
238
+ * @see {@link https://api.jquery.com/callbacks.fire/}
230
239
  */
231
240
  fire(...arguments: any[]): JQueryCallback;
232
241
 
233
242
  /**
234
243
  * Determine if the callbacks have already been called at least once.
244
+ * @see {@link https://api.jquery.com/callbacks.fired/}
235
245
  */
236
246
  fired(): boolean;
237
247
 
@@ -240,6 +250,7 @@ interface JQueryCallback {
240
250
  *
241
251
  * @param context A reference to the context in which the callbacks in the list should be fired.
242
252
  * @param arguments An argument, or array of arguments, to pass to the callbacks in the list.
253
+ * @see {@link https://api.jquery.com/callbacks.fireWith/}
243
254
  */
244
255
  fireWith(context?: any, args?: any[]): JQueryCallback;
245
256
 
@@ -247,16 +258,19 @@ interface JQueryCallback {
247
258
  * Determine whether a supplied callback is in a list
248
259
  *
249
260
  * @param callback The callback to search for.
261
+ * @see {@link https://api.jquery.com/callbacks.has/}
250
262
  */
251
263
  has(callback: Function): boolean;
252
264
 
253
265
  /**
254
266
  * Lock a callback list in its current state.
267
+ * @see {@link https://api.jquery.com/callbacks.lock/}
255
268
  */
256
269
  lock(): JQueryCallback;
257
270
 
258
271
  /**
259
272
  * Determine if the callbacks list has been locked.
273
+ * @see {@link https://api.jquery.com/callbacks.locked/}
260
274
  */
261
275
  locked(): boolean;
262
276
 
@@ -264,12 +278,14 @@ interface JQueryCallback {
264
278
  * Remove a callback or a collection of callbacks from a callback list.
265
279
  *
266
280
  * @param callbacks A function, or array of functions, that are to be removed from the callback list.
281
+ * @see {@link https://api.jquery.com/callbacks.remove/}
267
282
  */
268
283
  remove(callbacks: Function): JQueryCallback;
269
284
  /**
270
285
  * Remove a callback or a collection of callbacks from a callback list.
271
286
  *
272
287
  * @param callbacks A function, or array of functions, that are to be removed from the callback list.
288
+ * @see {@link https://api.jquery.com/callbacks.remove/}
273
289
  */
274
290
  remove(callbacks: Function[]): JQueryCallback;
275
291
  }
@@ -283,6 +299,7 @@ interface JQueryGenericPromise<T> {
283
299
  *
284
300
  * @param doneFilter A function that is called when the Deferred is resolved.
285
301
  * @param failFilter An optional function that is called when the Deferred is rejected.
302
+ * @see {@link https://api.jquery.com/deferred.then/#deferred-then-doneFilter-failFilter-progressFilter}
286
303
  */
287
304
  then<U>(doneFilter: (value?: T, ...values: any[]) => U|JQueryPromise<U>, failFilter?: (...reasons: any[]) => any, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
288
305
 
@@ -291,6 +308,7 @@ interface JQueryGenericPromise<T> {
291
308
  *
292
309
  * @param doneFilter A function that is called when the Deferred is resolved.
293
310
  * @param failFilter An optional function that is called when the Deferred is rejected.
311
+ * @see {@link https://api.jquery.com/deferred.then/#deferred-then-doneFilter-failFilter-progressFilter}
294
312
  */
295
313
  then(doneFilter: (value?: T, ...values: any[]) => void, failFilter?: (...reasons: any[]) => any, progressFilter?: (...progression: any[]) => any): JQueryPromise<void>;
296
314
  }
@@ -308,10 +326,12 @@ interface JQueryPromiseOperator<T, U> {
308
326
 
309
327
  /**
310
328
  * Interface for the JQuery promise, part of callbacks
329
+ * @see {@link https://api.jquery.com/category/deferred-object/}
311
330
  */
312
331
  interface JQueryPromise<T> extends JQueryGenericPromise<T> {
313
332
  /**
314
333
  * Determine the current state of a Deferred object.
334
+ * @see {@link https://api.jquery.com/deferred.state/}
315
335
  */
316
336
  state(): string;
317
337
  /**
@@ -319,6 +339,7 @@ interface JQueryPromise<T> extends JQueryGenericPromise<T> {
319
339
  *
320
340
  * @param alwaysCallback1 A function, or array of functions, that is called when the Deferred is resolved or rejected.
321
341
  * @param alwaysCallbackN Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected.
342
+ * @see {@link https://api.jquery.com/deferred.always/}
322
343
  */
323
344
  always(alwaysCallback1?: JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[], ...alwaysCallbackN: Array<JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[]>): JQueryPromise<T>;
324
345
  /**
@@ -326,6 +347,7 @@ interface JQueryPromise<T> extends JQueryGenericPromise<T> {
326
347
  *
327
348
  * @param doneCallback1 A function, or array of functions, that are called when the Deferred is resolved.
328
349
  * @param doneCallbackN Optional additional functions, or arrays of functions, that are called when the Deferred is resolved.
350
+ * @see {@link https://api.jquery.com/deferred.done/}
329
351
  */
330
352
  done(doneCallback1?: JQueryPromiseCallback<T>|JQueryPromiseCallback<T>[], ...doneCallbackN: Array<JQueryPromiseCallback<T>|JQueryPromiseCallback<T>[]>): JQueryPromise<T>;
331
353
  /**
@@ -333,6 +355,7 @@ interface JQueryPromise<T> extends JQueryGenericPromise<T> {
333
355
  *
334
356
  * @param failCallback1 A function, or array of functions, that are called when the Deferred is rejected.
335
357
  * @param failCallbackN Optional additional functions, or arrays of functions, that are called when the Deferred is rejected.
358
+ * @see {@link https://api.jquery.com/deferred.fail/}
336
359
  */
337
360
  fail(failCallback1?: JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[], ...failCallbackN: Array<JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[]>): JQueryPromise<T>;
338
361
  /**
@@ -340,6 +363,7 @@ interface JQueryPromise<T> extends JQueryGenericPromise<T> {
340
363
  *
341
364
  * @param progressCallback1 A function, or array of functions, to be called when the Deferred generates progress notifications.
342
365
  * @param progressCallbackN Optional additional functions, or arrays of functions, to be called when the Deferred generates progress notifications.
366
+ * @see {@link https://api.jquery.com/deferred.progress/}
343
367
  */
344
368
  progress(progressCallback1?: JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[], ...progressCallbackN: Array<JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[]>): JQueryPromise<T>;
345
369
 
@@ -350,16 +374,19 @@ interface JQueryPromise<T> extends JQueryGenericPromise<T> {
350
374
  * Return a Deferred's Promise object.
351
375
  *
352
376
  * @param target Object onto which the promise methods have to be attached
377
+ * @see {@link https://api.jquery.com/deferred.promise/}
353
378
  */
354
379
  promise(target?: any): JQueryPromise<T>;
355
380
  }
356
381
 
357
382
  /**
358
383
  * Interface for the JQuery deferred, part of callbacks
384
+ * @see {@link https://api.jquery.com/category/deferred-object/}
359
385
  */
360
386
  interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
361
387
  /**
362
388
  * Determine the current state of a Deferred object.
389
+ * @see {@link https://api.jquery.com/deferred.state/}
363
390
  */
364
391
  state(): string;
365
392
  /**
@@ -367,6 +394,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
367
394
  *
368
395
  * @param alwaysCallback1 A function, or array of functions, that is called when the Deferred is resolved or rejected.
369
396
  * @param alwaysCallbackN Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected.
397
+ * @see {@link https://api.jquery.com/deferred.always/}
370
398
  */
371
399
  always(alwaysCallback1?: JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[], ...alwaysCallbackN: Array<JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[]>): JQueryDeferred<T>;
372
400
  /**
@@ -374,6 +402,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
374
402
  *
375
403
  * @param doneCallback1 A function, or array of functions, that are called when the Deferred is resolved.
376
404
  * @param doneCallbackN Optional additional functions, or arrays of functions, that are called when the Deferred is resolved.
405
+ * @see {@link https://api.jquery.com/deferred.done/}
377
406
  */
378
407
  done(doneCallback1?: JQueryPromiseCallback<T>|JQueryPromiseCallback<T>[], ...doneCallbackN: Array<JQueryPromiseCallback<T>|JQueryPromiseCallback<T>[]>): JQueryDeferred<T>;
379
408
  /**
@@ -381,6 +410,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
381
410
  *
382
411
  * @param failCallback1 A function, or array of functions, that are called when the Deferred is rejected.
383
412
  * @param failCallbackN Optional additional functions, or arrays of functions, that are called when the Deferred is rejected.
413
+ * @see {@link https://api.jquery.com/deferred.fail/}
384
414
  */
385
415
  fail(failCallback1?: JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[], ...failCallbackN: Array<JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[]>): JQueryDeferred<T>;
386
416
  /**
@@ -388,6 +418,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
388
418
  *
389
419
  * @param progressCallback1 A function, or array of functions, to be called when the Deferred generates progress notifications.
390
420
  * @param progressCallbackN Optional additional functions, or arrays of functions, to be called when the Deferred generates progress notifications.
421
+ * @see {@link https://api.jquery.com/deferred.progress/}
391
422
  */
392
423
  progress(progressCallback1?: JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[], ...progressCallbackN: Array<JQueryPromiseCallback<any>|JQueryPromiseCallback<any>[]>): JQueryDeferred<T>;
393
424
 
@@ -395,6 +426,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
395
426
  * Call the progressCallbacks on a Deferred object with the given args.
396
427
  *
397
428
  * @param args Optional arguments that are passed to the progressCallbacks.
429
+ * @see {@link https://api.jquery.com/deferred.notify/}
398
430
  */
399
431
  notify(value?: any, ...args: any[]): JQueryDeferred<T>;
400
432
 
@@ -403,6 +435,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
403
435
  *
404
436
  * @param context Context passed to the progressCallbacks as the this object.
405
437
  * @param args Optional arguments that are passed to the progressCallbacks.
438
+ * @see {@link https://api.jquery.com/deferred.notifyWith/}
406
439
  */
407
440
  notifyWith(context: any, args?: any[]): JQueryDeferred<T>;
408
441
 
@@ -410,6 +443,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
410
443
  * Reject a Deferred object and call any failCallbacks with the given args.
411
444
  *
412
445
  * @param args Optional arguments that are passed to the failCallbacks.
446
+ * @see {@link https://api.jquery.com/deferred.reject/}
413
447
  */
414
448
  reject(value?: any, ...args: any[]): JQueryDeferred<T>;
415
449
  /**
@@ -417,6 +451,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
417
451
  *
418
452
  * @param context Context passed to the failCallbacks as the this object.
419
453
  * @param args An optional array of arguments that are passed to the failCallbacks.
454
+ * @see {@link https://api.jquery.com/deferred.rejectWith/}
420
455
  */
421
456
  rejectWith(context: any, args?: any[]): JQueryDeferred<T>;
422
457
 
@@ -425,6 +460,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
425
460
  *
426
461
  * @param value First argument passed to doneCallbacks.
427
462
  * @param args Optional subsequent arguments that are passed to the doneCallbacks.
463
+ * @see {@link https://api.jquery.com/deferred.resolve/}
428
464
  */
429
465
  resolve(value?: T, ...args: any[]): JQueryDeferred<T>;
430
466
 
@@ -433,6 +469,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
433
469
  *
434
470
  * @param context Context passed to the doneCallbacks as the this object.
435
471
  * @param args An optional array of arguments that are passed to the doneCallbacks.
472
+ * @see {@link https://api.jquery.com/deferred.resolveWith/}
436
473
  */
437
474
  resolveWith(context: any, args?: T[]): JQueryDeferred<T>;
438
475
 
@@ -440,6 +477,7 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
440
477
  * Return a Deferred's Promise object.
441
478
  *
442
479
  * @param target Object onto which the promise methods have to be attached
480
+ * @see {@link https://api.jquery.com/deferred.promise/}
443
481
  */
444
482
  promise(target?: any): JQueryPromise<T>;
445
483
 
@@ -449,25 +487,98 @@ interface JQueryDeferred<T> extends JQueryGenericPromise<T> {
449
487
 
450
488
  /**
451
489
  * Interface of the JQuery extension of the W3C event object
490
+ * @see {@link https://api.jquery.com/category/events/event-object/}
452
491
  */
453
492
  interface BaseJQueryEventObject extends Event {
493
+ /**
494
+ * The current DOM element within the event bubbling phase.
495
+ * @see {@link https://api.jquery.com/event.currentTarget/}
496
+ */
454
497
  currentTarget: Element;
498
+ /**
499
+ * An optional object of data passed to an event method when the current executing handler is bound.
500
+ * @see {@link https://api.jquery.com/event.data/}
501
+ */
455
502
  data: any;
503
+ /**
504
+ * The element where the currently-called jQuery event handler was attached.
505
+ * @see {@link https://api.jquery.com/event.delegateTarget/}
506
+ */
456
507
  delegateTarget: Element;
508
+ /**
509
+ * Returns whether event.preventDefault() was ever called on this event object.
510
+ * @see {@link https://api.jquery.com/event.isDefaultPrevented/}
511
+ */
457
512
  isDefaultPrevented(): boolean;
513
+ /**
514
+ * Returns whether event.stopImmediatePropagation() was ever called on this event object.
515
+ * @see {@link https://api.jquery.com/event.isImmediatePropagationStopped/}
516
+ */
458
517
  isImmediatePropagationStopped(): boolean;
518
+ /**
519
+ * Returns whether event.stopPropagation() was ever called on this event object.
520
+ * @see {@link https://api.jquery.com/event.isPropagationStopped/}
521
+ */
459
522
  isPropagationStopped(): boolean;
523
+ /**
524
+ * The namespace specified when the event was triggered.
525
+ * @see {@link https://api.jquery.com/event.namespace/}
526
+ */
460
527
  namespace: string;
528
+ /**
529
+ * The browser's original Event object.
530
+ * @see {@link https://api.jquery.com/category/events/event-object/}
531
+ */
461
532
  originalEvent: Event;
533
+ /**
534
+ * If this method is called, the default action of the event will not be triggered.
535
+ * @see {@link https://api.jquery.com/event.preventDefault/}
536
+ */
462
537
  preventDefault(): any;
538
+ /**
539
+ * The other DOM element involved in the event, if any.
540
+ * @see {@link https://api.jquery.com/event.relatedTarget/}
541
+ */
463
542
  relatedTarget: Element;
543
+ /**
544
+ * The last value returned by an event handler that was triggered by this event, unless the value was undefined.
545
+ * @see {@link https://api.jquery.com/event.result/}
546
+ */
464
547
  result: any;
548
+ /**
549
+ * Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree.
550
+ * @see {@link https://api.jquery.com/event.stopImmediatePropagation/}
551
+ */
465
552
  stopImmediatePropagation(): void;
553
+ /**
554
+ * Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.
555
+ * @see {@link https://api.jquery.com/event.stopPropagation/}
556
+ */
466
557
  stopPropagation(): void;
558
+ /**
559
+ * The DOM element that initiated the event.
560
+ * @see {@link https://api.jquery.com/event.target/}
561
+ */
467
562
  target: Element;
563
+ /**
564
+ * The mouse position relative to the left edge of the document.
565
+ * @see {@link https://api.jquery.com/event.pageX/}
566
+ */
468
567
  pageX: number;
568
+ /**
569
+ * The mouse position relative to the top edge of the document.
570
+ * @see {@link https://api.jquery.com/event.pageY/}
571
+ */
469
572
  pageY: number;
573
+ /**
574
+ * For key or mouse events, this property indicates the specific key or button that was pressed.
575
+ * @see {@link https://api.jquery.com/event.which/}
576
+ */
470
577
  which: number;
578
+ /**
579
+ * Indicates whether the META key was pressed when the event fired.
580
+ * @see {@link https://api.jquery.com/event.metaKey/}
581
+ */
471
582
  metaKey: boolean;
472
583
  }
473
584
 
@@ -500,10 +611,16 @@ interface JQueryKeyEventObject extends JQueryInputEventObject {
500
611
  interface JQueryEventObject extends BaseJQueryEventObject, JQueryInputEventObject, JQueryMouseEventObject, JQueryKeyEventObject{
501
612
  }
502
613
 
503
- /*
504
- Collection of properties of the current browser
505
- */
506
-
614
+ /**
615
+ * A collection of properties that represent the presence of different browser features or bugs.
616
+ *
617
+ * Intended for jQuery's internal use; specific properties may be removed when they are no longer needed internally
618
+ * to improve page startup performance. For your own project's feature-detection needs, we strongly recommend the
619
+ * use of an external library such as {@link http://modernizr.com/|Modernizr} instead of dependency on properties
620
+ * in jQuery.support.
621
+ *
622
+ * @deprecated since version 1.9
623
+ */
507
624
  interface JQuerySupport {
508
625
  ajax?: boolean;
509
626
  boxModel?: boolean;
@@ -570,6 +687,9 @@ interface JQuerySerializeArrayElement {
570
687
  value: string;
571
688
  }
572
689
 
690
+ /**
691
+ * @see {@link https://api.jquery.com/animate/}
692
+ */
573
693
  interface JQueryAnimationOptions {
574
694
  /**
575
695
  * A string or number determining how long the animation will run.
@@ -629,6 +749,8 @@ interface JQueryEasingFunctions {
629
749
 
630
750
  /**
631
751
  * Static members of jQuery (those on $ and jQuery themselves)
752
+ *
753
+ * @see {@link https://api.jquery.com/Types/#jQuery}
632
754
  */
633
755
  interface JQueryStatic {
634
756
 
@@ -636,6 +758,7 @@ interface JQueryStatic {
636
758
  * Perform an asynchronous HTTP (Ajax) request.
637
759
  *
638
760
  * @param settings A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup().
761
+ * @see {@link https://api.jquery.com/jQuery.ajax/#jQuery-ajax-settings}
639
762
  */
640
763
  ajax(settings: JQueryAjaxSettings): JQueryXHR;
641
764
  /**
@@ -643,6 +766,7 @@ interface JQueryStatic {
643
766
  *
644
767
  * @param url A string containing the URL to which the request is sent.
645
768
  * @param settings A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup().
769
+ * @see {@link https://api.jquery.com/jQuery.ajax/#jQuery-ajax-url-settings}
646
770
  */
647
771
  ajax(url: string, settings?: JQueryAjaxSettings): JQueryXHR;
648
772
 
@@ -651,21 +775,33 @@ interface JQueryStatic {
651
775
  *
652
776
  * @param dataTypes An optional string containing one or more space-separated dataTypes
653
777
  * @param handler A handler to set default values for future Ajax requests.
778
+ * @see {@link https://api.jquery.com/jQuery.ajaxPrefilter/}
654
779
  */
655
780
  ajaxPrefilter(dataTypes: string, handler: (opts: any, originalOpts: JQueryAjaxSettings, jqXHR: JQueryXHR) => any): void;
656
781
  /**
657
782
  * Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax().
658
783
  *
659
784
  * @param handler A handler to set default values for future Ajax requests.
785
+ * @see {@link https://api.jquery.com/jQuery.ajaxPrefilter/}
660
786
  */
661
787
  ajaxPrefilter(handler: (opts: any, originalOpts: JQueryAjaxSettings, jqXHR: JQueryXHR) => any): void;
662
788
 
789
+ /**
790
+ * Creates an object that handles the actual transmission of Ajax data.
791
+ *
792
+ * @param dataType A string identifying the data type to use.
793
+ * @param handler A handler to return the new transport object to use with the data type provided in the first argument.
794
+ * @see {@link https://api.jquery.com/jQuery.ajaxTransport/}
795
+ */
796
+ ajaxTransport(dataType: string, handler: (opts: any, originalOpts: JQueryAjaxSettings, jqXHR: JQueryXHR) => any): void;
797
+
663
798
  ajaxSettings: JQueryAjaxSettings;
664
799
 
665
800
  /**
666
801
  * Set default values for future Ajax requests. Its use is not recommended.
667
802
  *
668
803
  * @param options A set of key/value pairs that configure the default Ajax request. All options are optional.
804
+ * @see {@link https://api.jquery.com/jQuery.ajaxSetup/}
669
805
  */
670
806
  ajaxSetup(options: JQueryAjaxSettings): void;
671
807
 
@@ -675,6 +811,7 @@ interface JQueryStatic {
675
811
  * @param url A string containing the URL to which the request is sent.
676
812
  * @param success A callback function that is executed if the request succeeds.
677
813
  * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html).
814
+ * @see {@link https://api.jquery.com/jQuery.get/#jQuery-get-url-data-success-dataType}
678
815
  */
679
816
  get(url: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR;
680
817
  /**
@@ -684,12 +821,14 @@ interface JQueryStatic {
684
821
  * @param data A plain object or string that is sent to the server with the request.
685
822
  * @param success A callback function that is executed if the request succeeds.
686
823
  * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html).
824
+ * @see {@link https://api.jquery.com/jQuery.get/#jQuery-get-url-data-success-dataType}
687
825
  */
688
826
  get(url: string, data?: Object|string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR;
689
827
  /**
690
828
  * Load data from the server using a HTTP GET request.
691
829
  *
692
830
  * @param settings The JQueryAjaxSettings to be used for the request
831
+ * @see {@link https://api.jquery.com/jQuery.get/#jQuery-get-settings}
693
832
  */
694
833
  get(settings : JQueryAjaxSettings): JQueryXHR;
695
834
  /**
@@ -697,6 +836,7 @@ interface JQueryStatic {
697
836
  *
698
837
  * @param url A string containing the URL to which the request is sent.
699
838
  * @param success A callback function that is executed if the request succeeds.
839
+ * @see {@link https://api.jquery.com/jQuery.getJSON/}
700
840
  */
701
841
  getJSON(url: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any): JQueryXHR;
702
842
  /**
@@ -705,6 +845,7 @@ interface JQueryStatic {
705
845
  * @param url A string containing the URL to which the request is sent.
706
846
  * @param data A plain object or string that is sent to the server with the request.
707
847
  * @param success A callback function that is executed if the request succeeds.
848
+ * @see {@link https://api.jquery.com/jQuery.getJSON/}
708
849
  */
709
850
  getJSON(url: string, data?: Object|string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any): JQueryXHR;
710
851
  /**
@@ -712,11 +853,14 @@ interface JQueryStatic {
712
853
  *
713
854
  * @param url A string containing the URL to which the request is sent.
714
855
  * @param success A callback function that is executed if the request succeeds.
856
+ * @see {@link https://api.jquery.com/jQuery.getScript/}
715
857
  */
716
858
  getScript(url: string, success?: (script: string, textStatus: string, jqXHR: JQueryXHR) => any): JQueryXHR;
717
859
 
718
860
  /**
719
861
  * Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.
862
+ *
863
+ * @see {@link https://api.jquery.com/jQuery.param/}
720
864
  */
721
865
  param: JQueryParam;
722
866
 
@@ -726,6 +870,7 @@ interface JQueryStatic {
726
870
  * @param url A string containing the URL to which the request is sent.
727
871
  * @param success A callback function that is executed if the request succeeds. Required if dataType is provided, but can be null in that case.
728
872
  * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html).
873
+ * @see {@link https://api.jquery.com/jQuery.post/#jQuery-post-url-data-success-dataType}
729
874
  */
730
875
  post(url: string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR;
731
876
  /**
@@ -735,18 +880,21 @@ interface JQueryStatic {
735
880
  * @param data A plain object or string that is sent to the server with the request.
736
881
  * @param success A callback function that is executed if the request succeeds. Required if dataType is provided, but can be null in that case.
737
882
  * @param dataType The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html).
883
+ * @see {@link https://api.jquery.com/jQuery.post/#jQuery-post-url-data-success-dataType}
738
884
  */
739
885
  post(url: string, data?: Object|string, success?: (data: any, textStatus: string, jqXHR: JQueryXHR) => any, dataType?: string): JQueryXHR;
740
886
  /**
741
887
  * Load data from the server using a HTTP POST request.
742
888
  *
743
889
  * @param settings The JQueryAjaxSettings to be used for the request
890
+ * @see {@link https://api.jquery.com/jQuery.post/#jQuery-post-settings}
744
891
  */
745
892
  post(settings : JQueryAjaxSettings): JQueryXHR;
746
893
  /**
747
894
  * A multi-purpose callbacks list object that provides a powerful way to manage callback lists.
748
895
  *
749
896
  * @param flags An optional list of space-separated flags that change how the callback list behaves.
897
+ * @see {@link https://api.jquery.com/jQuery.Callbacks/}
750
898
  */
751
899
  Callbacks(flags?: string): JQueryCallback;
752
900
 
@@ -754,6 +902,7 @@ interface JQueryStatic {
754
902
  * Holds or releases the execution of jQuery's ready event.
755
903
  *
756
904
  * @param hold Indicates whether the ready hold is being requested or released
905
+ * @see {@link https://api.jquery.com/jQuery.holdReady/}
757
906
  */
758
907
  holdReady(hold: boolean): void;
759
908
 
@@ -762,6 +911,7 @@ interface JQueryStatic {
762
911
  *
763
912
  * @param selector A string containing a selector expression
764
913
  * @param context A DOM Element, Document, or jQuery to use as context
914
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-selector-context}
765
915
  */
766
916
  (selector: string, context?: Element|JQuery): JQuery;
767
917
 
@@ -769,6 +919,7 @@ interface JQueryStatic {
769
919
  * Accepts a string containing a CSS selector which is then used to match a set of elements.
770
920
  *
771
921
  * @param element A DOM element to wrap in a jQuery object.
922
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-element}
772
923
  */
773
924
  (element: Element): JQuery;
774
925
 
@@ -776,6 +927,7 @@ interface JQueryStatic {
776
927
  * Accepts a string containing a CSS selector which is then used to match a set of elements.
777
928
  *
778
929
  * @param elementArray An array containing a set of DOM elements to wrap in a jQuery object.
930
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-elementArray}
779
931
  */
780
932
  (elementArray: Element[]): JQuery;
781
933
 
@@ -783,6 +935,7 @@ interface JQueryStatic {
783
935
  * Binds a function to be executed when the DOM has finished loading.
784
936
  *
785
937
  * @param callback A function to execute after the DOM is ready.
938
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-callback}
786
939
  */
787
940
  (callback: (jQueryAlias?: JQueryStatic) => any): JQuery;
788
941
 
@@ -790,6 +943,7 @@ interface JQueryStatic {
790
943
  * Accepts a string containing a CSS selector which is then used to match a set of elements.
791
944
  *
792
945
  * @param object A plain object to wrap in a jQuery object.
946
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-object}
793
947
  */
794
948
  (object: {}): JQuery;
795
949
 
@@ -797,11 +951,13 @@ interface JQueryStatic {
797
951
  * Accepts a string containing a CSS selector which is then used to match a set of elements.
798
952
  *
799
953
  * @param object An existing jQuery object to clone.
954
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-object}
800
955
  */
801
956
  (object: JQuery): JQuery;
802
957
 
803
958
  /**
804
959
  * Specify a function to execute when the DOM is fully loaded.
960
+ * @see {@link https://api.jquery.com/jQuery/#jQuery}
805
961
  */
806
962
  (): JQuery;
807
963
 
@@ -810,6 +966,7 @@ interface JQueryStatic {
810
966
  *
811
967
  * @param html A string of HTML to create on the fly. Note that this parses HTML, not XML.
812
968
  * @param ownerDocument A document in which the new elements will be created.
969
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-html-ownerDocument}
813
970
  */
814
971
  (html: string, ownerDocument?: Document): JQuery;
815
972
 
@@ -818,6 +975,7 @@ interface JQueryStatic {
818
975
  *
819
976
  * @param html A string defining a single, standalone, HTML element (e.g. <div/> or <div></div>).
820
977
  * @param attributes An object of attributes, events, and methods to call on the newly-created element.
978
+ * @see {@link https://api.jquery.com/jQuery/#jQuery-html-attributes}
821
979
  */
822
980
  (html: string, attributes: Object): JQuery;
823
981
 
@@ -825,6 +983,7 @@ interface JQueryStatic {
825
983
  * Relinquish jQuery's control of the $ variable.
826
984
  *
827
985
  * @param removeAll A Boolean indicating whether to remove all jQuery variables from the global scope (including jQuery itself).
986
+ * @see {@link https://api.jquery.com/jQuery.noConflict/}
828
987
  */
829
988
  noConflict(removeAll?: boolean): JQueryStatic;
830
989
 
@@ -832,13 +991,20 @@ interface JQueryStatic {
832
991
  * Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.
833
992
  *
834
993
  * @param deferreds One or more Deferred objects, or plain JavaScript objects.
994
+ * @see {@link https://api.jquery.com/jQuery.when/}
835
995
  */
836
996
  when<T>(...deferreds: Array<T|JQueryPromise<T>/* as JQueryDeferred<T> */>): JQueryPromise<T>;
837
997
 
838
998
  /**
839
999
  * Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties.
1000
+ * @see {@link https://api.jquery.com/jQuery.cssHooks/}
840
1001
  */
841
1002
  cssHooks: { [key: string]: any; };
1003
+
1004
+ /**
1005
+ * An object containing all CSS properties that may be used without a unit. The .css() method uses this object to see if it may append px to unitless values.
1006
+ * @see {@link https://api.jquery.com/jQuery.cssNumber/}
1007
+ */
842
1008
  cssNumber: any;
843
1009
 
844
1010
  /**
@@ -847,6 +1013,7 @@ interface JQueryStatic {
847
1013
  * @param element The DOM element to associate with the data.
848
1014
  * @param key A string naming the piece of data to set.
849
1015
  * @param value The new data value.
1016
+ * @see {@link https://api.jquery.com/jQuery.data/#jQuery-data-element-key-value}
850
1017
  */
851
1018
  data<T>(element: Element, key: string, value: T): T;
852
1019
  /**
@@ -854,12 +1021,14 @@ interface JQueryStatic {
854
1021
  *
855
1022
  * @param element The DOM element to associate with the data.
856
1023
  * @param key A string naming the piece of data to set.
1024
+ * @see {@link https://api.jquery.com/jQuery.data/#jQuery-data-element-key}
857
1025
  */
858
1026
  data(element: Element, key: string): any;
859
1027
  /**
860
1028
  * Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element.
861
1029
  *
862
1030
  * @param element The DOM element to associate with the data.
1031
+ * @see {@link https://api.jquery.com/jQuery.data/#jQuery-data-element}
863
1032
  */
864
1033
  data(element: Element): any;
865
1034
 
@@ -868,6 +1037,7 @@ interface JQueryStatic {
868
1037
  *
869
1038
  * @param element A DOM element from which to remove and execute a queued function.
870
1039
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
1040
+ * @see {@link https://api.jquery.com/jQuery.dequeue/}
871
1041
  */
872
1042
  dequeue(element: Element, queueName?: string): void;
873
1043
 
@@ -875,6 +1045,7 @@ interface JQueryStatic {
875
1045
  * Determine whether an element has any jQuery data associated with it.
876
1046
  *
877
1047
  * @param element A DOM element to be checked for data.
1048
+ * @see {@link https://api.jquery.com/jQuery.hasData/}
878
1049
  */
879
1050
  hasData(element: Element): boolean;
880
1051
 
@@ -883,6 +1054,7 @@ interface JQueryStatic {
883
1054
  *
884
1055
  * @param element A DOM element to inspect for an attached queue.
885
1056
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
1057
+ * @see {@link https://api.jquery.com/jQuery.queue/#jQuery-queue-element-queueName}
886
1058
  */
887
1059
  queue(element: Element, queueName?: string): any[];
888
1060
  /**
@@ -891,6 +1063,7 @@ interface JQueryStatic {
891
1063
  * @param element A DOM element where the array of queued functions is attached.
892
1064
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
893
1065
  * @param newQueue An array of functions to replace the current queue contents.
1066
+ * @see {@link https://api.jquery.com/jQuery.queue/#jQuery-queue-element-queueName-newQueue}
894
1067
  */
895
1068
  queue(element: Element, queueName: string, newQueue: Function[]): JQuery;
896
1069
  /**
@@ -899,6 +1072,7 @@ interface JQueryStatic {
899
1072
  * @param element A DOM element on which to add a queued function.
900
1073
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
901
1074
  * @param callback The new function to add to the queue.
1075
+ * @see {@link https://api.jquery.com/jQuery.queue/#jQuery-queue-element-queueName-callback}
902
1076
  */
903
1077
  queue(element: Element, queueName: string, callback: Function): JQuery;
904
1078
 
@@ -907,6 +1081,7 @@ interface JQueryStatic {
907
1081
  *
908
1082
  * @param element A DOM element from which to remove data.
909
1083
  * @param name A string naming the piece of data to remove.
1084
+ * @see {@link https://api.jquery.com/jQuery.removeData/}
910
1085
  */
911
1086
  removeData(element: Element, name?: string): JQuery;
912
1087
 
@@ -914,6 +1089,7 @@ interface JQueryStatic {
914
1089
  * A constructor function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.
915
1090
  *
916
1091
  * @param beforeStart A function that is called just before the constructor returns.
1092
+ * @see {@link https://api.jquery.com/jQuery.Deferred/}
917
1093
  */
918
1094
  Deferred<T>(beforeStart?: (deferred: JQueryDeferred<T>) => any): JQueryDeferred<T>;
919
1095
 
@@ -927,12 +1103,14 @@ interface JQueryStatic {
927
1103
  tick: () => void;
928
1104
  /**
929
1105
  * The rate (in milliseconds) at which animations fire.
1106
+ * @see {@link https://api.jquery.com/jQuery.fx.interval/}
930
1107
  */
931
1108
  interval: number;
932
1109
  stop: () => void;
933
1110
  speeds: { slow: number; fast: number; };
934
1111
  /**
935
1112
  * Globally disable all animations.
1113
+ * @see {@link https://api.jquery.com/jQuery.fx.off/}
936
1114
  */
937
1115
  off: boolean;
938
1116
  step: any;
@@ -941,17 +1119,19 @@ interface JQueryStatic {
941
1119
  /**
942
1120
  * Takes a function and returns a new one that will always have a particular context.
943
1121
  *
944
- * @param fnction The function whose context will be changed.
1122
+ * @param func The function whose context will be changed.
945
1123
  * @param context The object to which the context (this) of the function should be set.
946
1124
  * @param additionalArguments Any number of arguments to be passed to the function referenced in the function argument.
1125
+ * @see {@link https://api.jquery.com/jQuery.proxy/#jQuery-proxy-function-context-additionalArguments}
947
1126
  */
948
- proxy(fnction: (...args: any[]) => any, context: Object, ...additionalArguments: any[]): any;
1127
+ proxy(func: (...args: any[]) => any, context: Object, ...additionalArguments: any[]): any;
949
1128
  /**
950
1129
  * Takes a function and returns a new one that will always have a particular context.
951
1130
  *
952
1131
  * @param context The object to which the context (this) of the function should be set.
953
1132
  * @param name The name of the function whose context will be changed (should be a property of the context object).
954
1133
  * @param additionalArguments Any number of arguments to be passed to the function named in the name argument.
1134
+ * @see {@link https://api.jquery.com/jQuery.proxy/#jQuery-proxy-context-name-additionalArguments}
955
1135
  */
956
1136
  proxy(context: Object, name: string, ...additionalArguments: any[]): any;
957
1137
 
@@ -961,6 +1141,7 @@ interface JQueryStatic {
961
1141
  * Takes a string and throws an exception containing it.
962
1142
  *
963
1143
  * @param message The message to send out.
1144
+ * @see {@link https://api.jquery.com/jQuery.error/}
964
1145
  */
965
1146
  error(message: any): JQuery;
966
1147
 
@@ -977,6 +1158,7 @@ interface JQueryStatic {
977
1158
  *
978
1159
  * @param container The DOM element that may contain the other element.
979
1160
  * @param contained The DOM element that may be contained by (a descendant of) the other element.
1161
+ * @see {@link https://api.jquery.com/jQuery.contains/}
980
1162
  */
981
1163
  contains(container: Element, contained: Element): boolean;
982
1164
 
@@ -985,6 +1167,7 @@ interface JQueryStatic {
985
1167
  *
986
1168
  * @param collection The object or array to iterate over.
987
1169
  * @param callback The function that will be executed on every object.
1170
+ * @see {@link https://api.jquery.com/jQuery.each/#jQuery-each-array-callback}
988
1171
  */
989
1172
  each<T>(
990
1173
  collection: T[],
@@ -996,6 +1179,7 @@ interface JQueryStatic {
996
1179
  *
997
1180
  * @param collection The object or array to iterate over.
998
1181
  * @param callback The function that will be executed on every object.
1182
+ * @see {@link https://api.jquery.com/jQuery.each/#jQuery-each-object-callback}
999
1183
  */
1000
1184
  each(
1001
1185
  collection: any,
@@ -1008,6 +1192,7 @@ interface JQueryStatic {
1008
1192
  * @param target An object that will receive the new properties if additional objects are passed in or that will extend the jQuery namespace if it is the sole argument.
1009
1193
  * @param object1 An object containing additional properties to merge in.
1010
1194
  * @param objectN Additional objects containing properties to merge in.
1195
+ * @see {@link https://api.jquery.com/jQuery.extend/#jQuery-extend-target-object1-objectN}
1011
1196
  */
1012
1197
  extend(target: any, object1?: any, ...objectN: any[]): any;
1013
1198
  /**
@@ -1017,6 +1202,7 @@ interface JQueryStatic {
1017
1202
  * @param target The object to extend. It will receive the new properties.
1018
1203
  * @param object1 An object containing additional properties to merge in.
1019
1204
  * @param objectN Additional objects containing properties to merge in.
1205
+ * @see {@link https://api.jquery.com/jQuery.extend/#jQuery-extend-deep-target-object1-objectN}
1020
1206
  */
1021
1207
  extend(deep: boolean, target: any, object1?: any, ...objectN: any[]): any;
1022
1208
 
@@ -1024,6 +1210,7 @@ interface JQueryStatic {
1024
1210
  * Execute some JavaScript code globally.
1025
1211
  *
1026
1212
  * @param code The JavaScript code to execute.
1213
+ * @see {@link https://api.jquery.com/jQuery.globalEval/}
1027
1214
  */
1028
1215
  globalEval(code: string): any;
1029
1216
 
@@ -1033,6 +1220,7 @@ interface JQueryStatic {
1033
1220
  * @param array The array to search through.
1034
1221
  * @param func The function to process each item against. The first argument to the function is the item, and the second argument is the index. The function should return a Boolean value. this will be the global window object.
1035
1222
  * @param invert If "invert" is false, or not provided, then the function returns an array consisting of all elements for which "callback" returns true. If "invert" is true, then the function returns an array consisting of all elements for which "callback" returns false.
1223
+ * @see {@link https://api.jquery.com/jQuery.grep/}
1036
1224
  */
1037
1225
  grep<T>(array: T[], func: (elementOfArray?: T, indexInArray?: number) => boolean, invert?: boolean): T[];
1038
1226
 
@@ -1041,7 +1229,8 @@ interface JQueryStatic {
1041
1229
  *
1042
1230
  * @param value The value to search for.
1043
1231
  * @param array An array through which to search.
1044
- * @param fromIndex he index of the array at which to begin the search. The default is 0, which will search the whole array.
1232
+ * @param fromIndex The index of the array at which to begin the search. The default is 0, which will search the whole array.
1233
+ * @see {@link https://api.jquery.com/jQuery.inArray/}
1045
1234
  */
1046
1235
  inArray<T>(value: T, array: T[], fromIndex?: number): number;
1047
1236
 
@@ -1049,42 +1238,49 @@ interface JQueryStatic {
1049
1238
  * Determine whether the argument is an array.
1050
1239
  *
1051
1240
  * @param obj Object to test whether or not it is an array.
1241
+ * @see {@link https://api.jquery.com/jQuery.isArray/}
1052
1242
  */
1053
1243
  isArray(obj: any): boolean;
1054
1244
  /**
1055
1245
  * Check to see if an object is empty (contains no enumerable properties).
1056
1246
  *
1057
1247
  * @param obj The object that will be checked to see if it's empty.
1248
+ * @see {@link https://api.jquery.com/jQuery.isEmptyObject/}
1058
1249
  */
1059
1250
  isEmptyObject(obj: any): boolean;
1060
1251
  /**
1061
- * Determine if the argument passed is a Javascript function object.
1252
+ * Determine if the argument passed is a JavaScript function object.
1062
1253
  *
1063
1254
  * @param obj Object to test whether or not it is a function.
1255
+ * @see {@link https://api.jquery.com/jQuery.isFunction/}
1064
1256
  */
1065
1257
  isFunction(obj: any): boolean;
1066
1258
  /**
1067
1259
  * Determines whether its argument is a number.
1068
1260
  *
1069
1261
  * @param value The value to be tested.
1262
+ * @see {@link https://api.jquery.com/jQuery.isNumeric/}
1070
1263
  */
1071
1264
  isNumeric(value: any): boolean;
1072
1265
  /**
1073
1266
  * Check to see if an object is a plain object (created using "{}" or "new Object").
1074
1267
  *
1075
1268
  * @param obj The object that will be checked to see if it's a plain object.
1269
+ * @see {@link https://api.jquery.com/jQuery.isPlainObject/}
1076
1270
  */
1077
1271
  isPlainObject(obj: any): boolean;
1078
1272
  /**
1079
1273
  * Determine whether the argument is a window.
1080
1274
  *
1081
1275
  * @param obj Object to test whether or not it is a window.
1276
+ * @see {@link https://api.jquery.com/jQuery.isWindow/}
1082
1277
  */
1083
1278
  isWindow(obj: any): boolean;
1084
1279
  /**
1085
1280
  * Check to see if a DOM node is within an XML document (or is an XML document).
1086
1281
  *
1087
- * @param node he DOM node that will be checked to see if it's in an XML document.
1282
+ * @param node The DOM node that will be checked to see if it's in an XML document.
1283
+ * @see {@link https://api.jquery.com/jQuery.isXMLDoc/}
1088
1284
  */
1089
1285
  isXMLDoc(node: Node): boolean;
1090
1286
 
@@ -1092,6 +1288,7 @@ interface JQueryStatic {
1092
1288
  * Convert an array-like object into a true JavaScript array.
1093
1289
  *
1094
1290
  * @param obj Any object to turn into a native Array.
1291
+ * @see {@link https://api.jquery.com/jQuery.makeArray/}
1095
1292
  */
1096
1293
  makeArray(obj: any): any[];
1097
1294
 
@@ -1100,6 +1297,7 @@ interface JQueryStatic {
1100
1297
  *
1101
1298
  * @param array The Array to translate.
1102
1299
  * @param callback The function to process each item against. The first argument to the function is the array item, the second argument is the index in array The function can return any value. Within the function, this refers to the global (window) object.
1300
+ * @see {@link https://api.jquery.com/jQuery.map/#jQuery-map-array-callback}
1103
1301
  */
1104
1302
  map<T, U>(array: T[], callback: (elementOfArray?: T, indexInArray?: number) => U): U[];
1105
1303
  /**
@@ -1107,6 +1305,7 @@ interface JQueryStatic {
1107
1305
  *
1108
1306
  * @param arrayOrObject The Array or Object to translate.
1109
1307
  * @param callback The function to process each item against. The first argument to the function is the value; the second argument is the index or key of the array or object property. The function can return any value to add to the array. A returned array will be flattened into the resulting array. Within the function, this refers to the global (window) object.
1308
+ * @see {@link https://api.jquery.com/jQuery.map/#jQuery-map-object-callback}
1110
1309
  */
1111
1310
  map(arrayOrObject: any, callback: (value?: any, indexOrKey?: any) => any): any;
1112
1311
 
@@ -1115,16 +1314,19 @@ interface JQueryStatic {
1115
1314
  *
1116
1315
  * @param first The first array to merge, the elements of second added.
1117
1316
  * @param second The second array to merge into the first, unaltered.
1317
+ * @see {@link https://api.jquery.com/jQuery.merge/}
1118
1318
  */
1119
1319
  merge<T>(first: T[], second: T[]): T[];
1120
1320
 
1121
1321
  /**
1122
1322
  * An empty function.
1323
+ * @see {@link https://api.jquery.com/jQuery.noop/}
1123
1324
  */
1124
1325
  noop(): any;
1125
1326
 
1126
1327
  /**
1127
1328
  * Return a number representing the current time.
1329
+ * @see {@link https://api.jquery.com/jQuery.now/}
1128
1330
  */
1129
1331
  now(): number;
1130
1332
 
@@ -1132,6 +1334,7 @@ interface JQueryStatic {
1132
1334
  * Takes a well-formed JSON string and returns the resulting JavaScript object.
1133
1335
  *
1134
1336
  * @param json The JSON string to parse.
1337
+ * @see {@link https://api.jquery.com/jQuery.parseJSON/}
1135
1338
  */
1136
1339
  parseJSON(json: string): any;
1137
1340
 
@@ -1139,6 +1342,7 @@ interface JQueryStatic {
1139
1342
  * Parses a string into an XML document.
1140
1343
  *
1141
1344
  * @param data a well-formed XML string to be parsed
1345
+ * @see {@link https://api.jquery.com/jQuery.parseXML/}
1142
1346
  */
1143
1347
  parseXML(data: string): XMLDocument;
1144
1348
 
@@ -1146,6 +1350,7 @@ interface JQueryStatic {
1146
1350
  * Remove the whitespace from the beginning and end of a string.
1147
1351
  *
1148
1352
  * @param str Remove the whitespace from the beginning and end of a string.
1353
+ * @see {@link https://api.jquery.com/jQuery.trim/}
1149
1354
  */
1150
1355
  trim(str: string): string;
1151
1356
 
@@ -1153,6 +1358,7 @@ interface JQueryStatic {
1153
1358
  * Determine the internal JavaScript [[Class]] of an object.
1154
1359
  *
1155
1360
  * @param obj Object to get the internal JavaScript [[Class]] of.
1361
+ * @see {@link https://api.jquery.com/jQuery.type/}
1156
1362
  */
1157
1363
  type(obj: any): string;
1158
1364
 
@@ -1160,6 +1366,7 @@ interface JQueryStatic {
1160
1366
  * Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.
1161
1367
  *
1162
1368
  * @param array The Array of DOM elements.
1369
+ * @see {@link https://api.jquery.com/jQuery.unique/}
1163
1370
  */
1164
1371
  unique(array: Element[]): Element[];
1165
1372
 
@@ -1169,6 +1376,7 @@ interface JQueryStatic {
1169
1376
  * @param data HTML string to be parsed
1170
1377
  * @param context DOM element to serve as the context in which the HTML fragment will be created
1171
1378
  * @param keepScripts A Boolean indicating whether to include scripts passed in the HTML string
1379
+ * @see {@link https://api.jquery.com/jQuery.parseHTML/}
1172
1380
  */
1173
1381
  parseHTML(data: string, context?: HTMLElement, keepScripts?: boolean): any[];
1174
1382
 
@@ -1178,48 +1386,57 @@ interface JQueryStatic {
1178
1386
  * @param data HTML string to be parsed
1179
1387
  * @param context DOM element to serve as the context in which the HTML fragment will be created
1180
1388
  * @param keepScripts A Boolean indicating whether to include scripts passed in the HTML string
1389
+ * @see {@link https://api.jquery.com/jQuery.parseHTML/}
1181
1390
  */
1182
1391
  parseHTML(data: string, context?: Document, keepScripts?: boolean): any[];
1183
1392
  }
1184
1393
 
1185
1394
  /**
1186
1395
  * The jQuery instance members
1396
+ *
1397
+ * @see {@link https://api.jquery.com/Types/#jQuery}
1187
1398
  */
1188
1399
  interface JQuery {
1189
1400
  /**
1190
1401
  * Register a handler to be called when Ajax requests complete. This is an AjaxEvent.
1191
1402
  *
1192
1403
  * @param handler The function to be invoked.
1404
+ * @see {@link https://api.jquery.com/ajaxComplete/}
1193
1405
  */
1194
1406
  ajaxComplete(handler: (event: JQueryEventObject, XMLHttpRequest: XMLHttpRequest, ajaxOptions: any) => any): JQuery;
1195
1407
  /**
1196
1408
  * Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.
1197
1409
  *
1198
1410
  * @param handler The function to be invoked.
1411
+ * @see {@link https://api.jquery.com/ajaxError/}
1199
1412
  */
1200
1413
  ajaxError(handler: (event: JQueryEventObject, jqXHR: JQueryXHR, ajaxSettings: JQueryAjaxSettings, thrownError: any) => any): JQuery;
1201
1414
  /**
1202
1415
  * Attach a function to be executed before an Ajax request is sent. This is an Ajax Event.
1203
1416
  *
1204
1417
  * @param handler The function to be invoked.
1418
+ * @see {@link https://api.jquery.com/ajaxSend/}
1205
1419
  */
1206
1420
  ajaxSend(handler: (event: JQueryEventObject, jqXHR: JQueryXHR, ajaxOptions: JQueryAjaxSettings) => any): JQuery;
1207
1421
  /**
1208
1422
  * Register a handler to be called when the first Ajax request begins. This is an Ajax Event.
1209
1423
  *
1210
1424
  * @param handler The function to be invoked.
1425
+ * @see {@link https://api.jquery.com/ajaxStart/}
1211
1426
  */
1212
1427
  ajaxStart(handler: () => any): JQuery;
1213
1428
  /**
1214
1429
  * Register a handler to be called when all Ajax requests have completed. This is an Ajax Event.
1215
1430
  *
1216
1431
  * @param handler The function to be invoked.
1432
+ * @see {@link https://api.jquery.com/ajaxStop/}
1217
1433
  */
1218
1434
  ajaxStop(handler: () => any): JQuery;
1219
1435
  /**
1220
1436
  * Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event.
1221
1437
  *
1222
1438
  * @param handler The function to be invoked.
1439
+ * @see {@link https://api.jquery.com/ajaxSuccess/}
1223
1440
  */
1224
1441
  ajaxSuccess(handler: (event: JQueryEventObject, XMLHttpRequest: XMLHttpRequest, ajaxOptions: JQueryAjaxSettings) => any): JQuery;
1225
1442
 
@@ -1229,15 +1446,18 @@ interface JQuery {
1229
1446
  * @param url A string containing the URL to which the request is sent.
1230
1447
  * @param data A plain object or string that is sent to the server with the request.
1231
1448
  * @param complete A callback function that is executed when the request completes.
1449
+ * @see {@link https://api.jquery.com/load/}
1232
1450
  */
1233
1451
  load(url: string, data?: string|Object, complete?: (responseText: string, textStatus: string, XMLHttpRequest: XMLHttpRequest) => any): JQuery;
1234
1452
 
1235
1453
  /**
1236
1454
  * Encode a set of form elements as a string for submission.
1455
+ * @see {@link https://api.jquery.com/serialize/}
1237
1456
  */
1238
1457
  serialize(): string;
1239
1458
  /**
1240
1459
  * Encode a set of form elements as an array of names and values.
1460
+ * @see {@link https://api.jquery.com/serializeArray/}
1241
1461
  */
1242
1462
  serializeArray(): JQuerySerializeArrayElement[];
1243
1463
 
@@ -1245,17 +1465,20 @@ interface JQuery {
1245
1465
  * Adds the specified class(es) to each of the set of matched elements.
1246
1466
  *
1247
1467
  * @param className One or more space-separated classes to be added to the class attribute of each matched element.
1468
+ * @see {@link https://api.jquery.com/addClass/#addClass-className}
1248
1469
  */
1249
1470
  addClass(className: string): JQuery;
1250
1471
  /**
1251
1472
  * Adds the specified class(es) to each of the set of matched elements.
1252
1473
  *
1253
1474
  * @param func A function returning one or more space-separated class names to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this refers to the current element in the set.
1475
+ * @see {@link https://api.jquery.com/addClass/#addClass-function}
1254
1476
  */
1255
1477
  addClass(func: (index: number, className: string) => string): JQuery;
1256
1478
 
1257
1479
  /**
1258
1480
  * Add the previous set of elements on the stack to the current set, optionally filtered by a selector.
1481
+ * @see {@link https://api.jquery.com/addBack/}
1259
1482
  */
1260
1483
  addBack(selector?: string): JQuery;
1261
1484
 
@@ -1263,6 +1486,7 @@ interface JQuery {
1263
1486
  * Get the value of an attribute for the first element in the set of matched elements.
1264
1487
  *
1265
1488
  * @param attributeName The name of the attribute to get.
1489
+ * @see {@link https://api.jquery.com/attr/#attr-attributeName}
1266
1490
  */
1267
1491
  attr(attributeName: string): string;
1268
1492
  /**
@@ -1270,6 +1494,7 @@ interface JQuery {
1270
1494
  *
1271
1495
  * @param attributeName The name of the attribute to set.
1272
1496
  * @param value A value to set for the attribute. If this is `null`, the attribute will be deleted.
1497
+ * @see {@link https://api.jquery.com/attr/#attr-attributeName-value}
1273
1498
  */
1274
1499
  attr(attributeName: string, value: string|number|null): JQuery;
1275
1500
  /**
@@ -1277,12 +1502,14 @@ interface JQuery {
1277
1502
  *
1278
1503
  * @param attributeName The name of the attribute to set.
1279
1504
  * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old attribute value as arguments.
1505
+ * @see {@link https://api.jquery.com/attr/#attr-attributeName-function}
1280
1506
  */
1281
1507
  attr(attributeName: string, func: (index: number, attr: string) => string|number): JQuery;
1282
1508
  /**
1283
1509
  * Set one or more attributes for the set of matched elements.
1284
1510
  *
1285
1511
  * @param attributes An object of attribute-value pairs to set.
1512
+ * @see {@link https://api.jquery.com/attr/#attr-attributes}
1286
1513
  */
1287
1514
  attr(attributes: Object): JQuery;
1288
1515
 
@@ -1290,35 +1517,35 @@ interface JQuery {
1290
1517
  * Determine whether any of the matched elements are assigned the given class.
1291
1518
  *
1292
1519
  * @param className The class name to search for.
1520
+ * @see {@link https://api.jquery.com/hasClass/}
1293
1521
  */
1294
1522
  hasClass(className: string): boolean;
1295
1523
 
1296
1524
  /**
1297
1525
  * Get the HTML contents of the first element in the set of matched elements.
1526
+ * @see {@link https://api.jquery.com/html/#html}
1298
1527
  */
1299
1528
  html(): string;
1300
1529
  /**
1301
1530
  * Set the HTML contents of each element in the set of matched elements.
1302
1531
  *
1303
1532
  * @param htmlString A string of HTML to set as the content of each matched element.
1533
+ * @see {@link https://api.jquery.com/html/#html-htmlString}
1304
1534
  */
1305
1535
  html(htmlString: string): JQuery;
1306
1536
  /**
1307
1537
  * Set the HTML contents of each element in the set of matched elements.
1308
1538
  *
1309
1539
  * @param func A function returning the HTML content to set. Receives the index position of the element in the set and the old HTML value as arguments. jQuery empties the element before calling the function; use the oldhtml argument to reference the previous content. Within the function, this refers to the current element in the set.
1540
+ * @see {@link https://api.jquery.com/html/#html-function}
1310
1541
  */
1311
1542
  html(func: (index: number, oldhtml: string) => string): JQuery;
1312
- /**
1313
- * Set the HTML contents of each element in the set of matched elements.
1314
- *
1315
- * @param func A function returning the HTML content to set. Receives the index position of the element in the set and the old HTML value as arguments. jQuery empties the element before calling the function; use the oldhtml argument to reference the previous content. Within the function, this refers to the current element in the set.
1316
- */
1317
1543
 
1318
1544
  /**
1319
1545
  * Get the value of a property for the first element in the set of matched elements.
1320
1546
  *
1321
1547
  * @param propertyName The name of the property to get.
1548
+ * @see {@link https://api.jquery.com/prop/#prop-propertyName}
1322
1549
  */
1323
1550
  prop(propertyName: string): any;
1324
1551
  /**
@@ -1326,12 +1553,14 @@ interface JQuery {
1326
1553
  *
1327
1554
  * @param propertyName The name of the property to set.
1328
1555
  * @param value A value to set for the property.
1556
+ * @see {@link https://api.jquery.com/prop/#prop-propertyName-value}
1329
1557
  */
1330
1558
  prop(propertyName: string, value: string|number|boolean): JQuery;
1331
1559
  /**
1332
1560
  * Set one or more properties for the set of matched elements.
1333
1561
  *
1334
1562
  * @param properties An object of property-value pairs to set.
1563
+ * @see {@link https://api.jquery.com/prop/#prop-properties}
1335
1564
  */
1336
1565
  prop(properties: Object): JQuery;
1337
1566
  /**
@@ -1339,6 +1568,7 @@ interface JQuery {
1339
1568
  *
1340
1569
  * @param propertyName The name of the property to set.
1341
1570
  * @param func A function returning the value to set. Receives the index position of the element in the set and the old property value as arguments. Within the function, the keyword this refers to the current element.
1571
+ * @see {@link https://api.jquery.com/prop/#prop-propertyName-function}
1342
1572
  */
1343
1573
  prop(propertyName: string, func: (index: number, oldPropertyValue: any) => any): JQuery;
1344
1574
 
@@ -1346,6 +1576,7 @@ interface JQuery {
1346
1576
  * Remove an attribute from each element in the set of matched elements.
1347
1577
  *
1348
1578
  * @param attributeName An attribute to remove; as of version 1.7, it can be a space-separated list of attributes.
1579
+ * @see {@link https://api.jquery.com/removeAttr/}
1349
1580
  */
1350
1581
  removeAttr(attributeName: string): JQuery;
1351
1582
 
@@ -1353,12 +1584,14 @@ interface JQuery {
1353
1584
  * Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
1354
1585
  *
1355
1586
  * @param className One or more space-separated classes to be removed from the class attribute of each matched element.
1587
+ * @see {@link https://api.jquery.com/removeClass/#removeClass-className}
1356
1588
  */
1357
1589
  removeClass(className?: string): JQuery;
1358
1590
  /**
1359
1591
  * Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
1360
1592
  *
1361
1593
  * @param func A function returning one or more space-separated class names to be removed. Receives the index position of the element in the set and the old class value as arguments.
1594
+ * @see {@link https://api.jquery.com/removeClass/#removeClass-function}
1362
1595
  */
1363
1596
  removeClass(func: (index: number, className: string) => string): JQuery;
1364
1597
 
@@ -1366,6 +1599,7 @@ interface JQuery {
1366
1599
  * Remove a property for the set of matched elements.
1367
1600
  *
1368
1601
  * @param propertyName The name of the property to remove.
1602
+ * @see {@link https://api.jquery.com/removeProp/}
1369
1603
  */
1370
1604
  removeProp(propertyName: string): JQuery;
1371
1605
 
@@ -1374,12 +1608,14 @@ interface JQuery {
1374
1608
  *
1375
1609
  * @param className One or more class names (separated by spaces) to be toggled for each element in the matched set.
1376
1610
  * @param swtch A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed.
1611
+ * @see {@link https://api.jquery.com/toggleClass/#toggleClass-className}
1377
1612
  */
1378
1613
  toggleClass(className: string, swtch?: boolean): JQuery;
1379
1614
  /**
1380
1615
  * Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.
1381
1616
  *
1382
1617
  * @param swtch A boolean value to determine whether the class should be added or removed.
1618
+ * @see {@link https://api.jquery.com/toggleClass/#toggleClass-state}
1383
1619
  */
1384
1620
  toggleClass(swtch?: boolean): JQuery;
1385
1621
  /**
@@ -1387,31 +1623,35 @@ interface JQuery {
1387
1623
  *
1388
1624
  * @param func A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the switch as arguments.
1389
1625
  * @param swtch A boolean value to determine whether the class should be added or removed.
1626
+ * @see {@link https://api.jquery.com/toggleClass/#toggleClass-function-state}
1390
1627
  */
1391
1628
  toggleClass(func: (index: number, className: string, swtch: boolean) => string, swtch?: boolean): JQuery;
1392
1629
 
1393
1630
  /**
1394
1631
  * Get the current value of the first element in the set of matched elements.
1632
+ * @see {@link https://api.jquery.com/val/#val}
1395
1633
  */
1396
1634
  val(): any;
1397
1635
  /**
1398
1636
  * Set the value of each element in the set of matched elements.
1399
1637
  *
1400
1638
  * @param value A string of text, an array of strings or number corresponding to the value of each matched element to set as selected/checked.
1639
+ * @see {@link https://api.jquery.com/val/#val-value}
1401
1640
  */
1402
1641
  val(value: string|string[]|number): JQuery;
1403
1642
  /**
1404
1643
  * Set the value of each element in the set of matched elements.
1405
1644
  *
1406
1645
  * @param func A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments.
1646
+ * @see {@link https://api.jquery.com/val/#val-function}
1407
1647
  */
1408
1648
  val(func: (index: number, value: string) => string): JQuery;
1409
1649
 
1410
-
1411
1650
  /**
1412
1651
  * Get the value of style properties for the first element in the set of matched elements.
1413
1652
  *
1414
1653
  * @param propertyName A CSS property.
1654
+ * @see {@link https://api.jquery.com/css/#css-propertyName}
1415
1655
  */
1416
1656
  css(propertyName: string): string;
1417
1657
  /**
@@ -1419,6 +1659,7 @@ interface JQuery {
1419
1659
  *
1420
1660
  * @param propertyName A CSS property name.
1421
1661
  * @param value A value to set for the property.
1662
+ * @see {@link https://api.jquery.com/css/#css-propertyName-value}
1422
1663
  */
1423
1664
  css(propertyName: string, value: string|number): JQuery;
1424
1665
  /**
@@ -1426,34 +1667,40 @@ interface JQuery {
1426
1667
  *
1427
1668
  * @param propertyName A CSS property name.
1428
1669
  * @param value A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments.
1670
+ * @see {@link https://api.jquery.com/css/#css-propertyName-function}
1429
1671
  */
1430
1672
  css(propertyName: string, value: (index: number, value: string) => string|number): JQuery;
1431
1673
  /**
1432
1674
  * Set one or more CSS properties for the set of matched elements.
1433
1675
  *
1434
1676
  * @param properties An object of property-value pairs to set.
1677
+ * @see {@link https://api.jquery.com/css/#css-properties}
1435
1678
  */
1436
1679
  css(properties: Object): JQuery;
1437
1680
 
1438
1681
  /**
1439
1682
  * Get the current computed height for the first element in the set of matched elements.
1683
+ * @see {@link https://api.jquery.com/height/#height}
1440
1684
  */
1441
1685
  height(): number;
1442
1686
  /**
1443
1687
  * Set the CSS height of every matched element.
1444
1688
  *
1445
1689
  * @param value An integer representing the number of pixels, or an integer with an optional unit of measure appended (as a string).
1690
+ * @see {@link https://api.jquery.com/height/#height-value}
1446
1691
  */
1447
1692
  height(value: number|string): JQuery;
1448
1693
  /**
1449
1694
  * Set the CSS height of every matched element.
1450
1695
  *
1451
1696
  * @param func A function returning the height to set. Receives the index position of the element in the set and the old height as arguments. Within the function, this refers to the current element in the set.
1697
+ * @see {@link https://api.jquery.com/height/#height-function}
1452
1698
  */
1453
1699
  height(func: (index: number, height: number) => number|string): JQuery;
1454
1700
 
1455
1701
  /**
1456
1702
  * Get the current computed height for the first element in the set of matched elements, including padding but not border.
1703
+ * @see {@link https://api.jquery.com/innerHeight/#innerHeight}
1457
1704
  */
1458
1705
  innerHeight(): number;
1459
1706
 
@@ -1461,11 +1708,13 @@ interface JQuery {
1461
1708
  * Sets the inner height on elements in the set of matched elements, including padding but not border.
1462
1709
  *
1463
1710
  * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string).
1711
+ * @see {@link https://api.jquery.com/innerHeight/#innerHeight-value}
1464
1712
  */
1465
1713
  innerHeight(value: number|string): JQuery;
1466
1714
 
1467
1715
  /**
1468
1716
  * Get the current computed width for the first element in the set of matched elements, including padding but not border.
1717
+ * @see {@link https://api.jquery.com/innerWidth/#innerWidth}
1469
1718
  */
1470
1719
  innerWidth(): number;
1471
1720
 
@@ -1473,23 +1722,27 @@ interface JQuery {
1473
1722
  * Sets the inner width on elements in the set of matched elements, including padding but not border.
1474
1723
  *
1475
1724
  * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string).
1725
+ * @see {@link https://api.jquery.com/innerWidth/#innerWidth-value}
1476
1726
  */
1477
1727
  innerWidth(value: number|string): JQuery;
1478
1728
 
1479
1729
  /**
1480
1730
  * Get the current coordinates of the first element in the set of matched elements, relative to the document.
1731
+ * @see {@link https://api.jquery.com/offset/#offset}
1481
1732
  */
1482
1733
  offset(): JQueryCoordinates;
1483
1734
  /**
1484
1735
  * An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements.
1485
1736
  *
1486
1737
  * @param coordinates An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements.
1738
+ * @see {@link https://api.jquery.com/offset/#offset-coordinates}
1487
1739
  */
1488
1740
  offset(coordinates: JQueryCoordinates): JQuery;
1489
1741
  /**
1490
1742
  * An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements.
1491
1743
  *
1492
1744
  * @param func A function to return the coordinates to set. Receives the index of the element in the collection as the first argument and the current coordinates as the second argument. The function should return an object with the new top and left properties.
1745
+ * @see {@link https://api.jquery.com/offset/#offset-function}
1493
1746
  */
1494
1747
  offset(func: (index: number, coords: JQueryCoordinates) => JQueryCoordinates): JQuery;
1495
1748
 
@@ -1497,6 +1750,7 @@ interface JQuery {
1497
1750
  * Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns an integer (without "px") representation of the value or null if called on an empty set of elements.
1498
1751
  *
1499
1752
  * @param includeMargin A Boolean indicating whether to include the element's margin in the calculation.
1753
+ * @see {@link https://api.jquery.com/outerHeight/#outerHeight-includeMargin}
1500
1754
  */
1501
1755
  outerHeight(includeMargin?: boolean): number;
1502
1756
 
@@ -1504,6 +1758,7 @@ interface JQuery {
1504
1758
  * Sets the outer height on elements in the set of matched elements, including padding and border.
1505
1759
  *
1506
1760
  * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string).
1761
+ * @see {@link https://api.jquery.com/outerHeight/#outerHeight-value}
1507
1762
  */
1508
1763
  outerHeight(value: number|string): JQuery;
1509
1764
 
@@ -1511,6 +1766,7 @@ interface JQuery {
1511
1766
  * Get the current computed width for the first element in the set of matched elements, including padding and border.
1512
1767
  *
1513
1768
  * @param includeMargin A Boolean indicating whether to include the element's margin in the calculation.
1769
+ * @see {@link https://api.jquery.com/outerWidth/#outerWidth-includeMargin}
1514
1770
  */
1515
1771
  outerWidth(includeMargin?: boolean): number;
1516
1772
 
@@ -1518,50 +1774,59 @@ interface JQuery {
1518
1774
  * Sets the outer width on elements in the set of matched elements, including padding and border.
1519
1775
  *
1520
1776
  * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string).
1777
+ * @see {@link https://api.jquery.com/outerWidth/#outerWidth-value}
1521
1778
  */
1522
1779
  outerWidth(value: number|string): JQuery;
1523
1780
 
1524
1781
  /**
1525
1782
  * Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.
1783
+ * @see {@link https://api.jquery.com/position/}
1526
1784
  */
1527
1785
  position(): JQueryCoordinates;
1528
1786
 
1529
1787
  /**
1530
1788
  * Get the current horizontal position of the scroll bar for the first element in the set of matched elements or set the horizontal position of the scroll bar for every matched element.
1789
+ * @see {@link https://api.jquery.com/scrollLeft/#scrollLeft}
1531
1790
  */
1532
1791
  scrollLeft(): number;
1533
1792
  /**
1534
1793
  * Set the current horizontal position of the scroll bar for each of the set of matched elements.
1535
1794
  *
1536
1795
  * @param value An integer indicating the new position to set the scroll bar to.
1796
+ * @see {@link https://api.jquery.com/scrollLeft/#scrollLeft-value}
1537
1797
  */
1538
1798
  scrollLeft(value: number): JQuery;
1539
1799
 
1540
1800
  /**
1541
1801
  * Get the current vertical position of the scroll bar for the first element in the set of matched elements or set the vertical position of the scroll bar for every matched element.
1802
+ * @see {@link https://api.jquery.com/scrollTop/#scrollTop}
1542
1803
  */
1543
1804
  scrollTop(): number;
1544
1805
  /**
1545
1806
  * Set the current vertical position of the scroll bar for each of the set of matched elements.
1546
1807
  *
1547
1808
  * @param value An integer indicating the new position to set the scroll bar to.
1809
+ * @see {@link https://api.jquery.com/scrollTop/#scrollTop-value}
1548
1810
  */
1549
1811
  scrollTop(value: number): JQuery;
1550
1812
 
1551
1813
  /**
1552
1814
  * Get the current computed width for the first element in the set of matched elements.
1815
+ * @see {@link https://api.jquery.com/width/#width}
1553
1816
  */
1554
1817
  width(): number;
1555
1818
  /**
1556
1819
  * Set the CSS width of each element in the set of matched elements.
1557
1820
  *
1558
1821
  * @param value An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string).
1822
+ * @see {@link https://api.jquery.com/width/#width-value}
1559
1823
  */
1560
1824
  width(value: number|string): JQuery;
1561
1825
  /**
1562
1826
  * Set the CSS width of each element in the set of matched elements.
1563
1827
  *
1564
1828
  * @param func A function returning the width to set. Receives the index position of the element in the set and the old width as arguments. Within the function, this refers to the current element in the set.
1829
+ * @see {@link https://api.jquery.com/width/#width-function}
1565
1830
  */
1566
1831
  width(func: (index: number, width: number) => number|string): JQuery;
1567
1832
 
@@ -1569,6 +1834,7 @@ interface JQuery {
1569
1834
  * Remove from the queue all items that have not yet been run.
1570
1835
  *
1571
1836
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
1837
+ * @see {@link https://api.jquery.com/clearQueue/}
1572
1838
  */
1573
1839
  clearQueue(queueName?: string): JQuery;
1574
1840
 
@@ -1576,23 +1842,27 @@ interface JQuery {
1576
1842
  * Store arbitrary data associated with the matched elements.
1577
1843
  *
1578
1844
  * @param key A string naming the piece of data to set.
1579
- * @param value The new data value; it can be any Javascript type including Array or Object.
1845
+ * @param value The new data value; it can be any JavaScript type including Array or Object.
1846
+ * @see {@link https://api.jquery.com/data/#data-key-value}
1580
1847
  */
1581
1848
  data(key: string, value: any): JQuery;
1582
1849
  /**
1583
1850
  * Return the value at the named data store for the first element in the jQuery collection, as set by data(name, value) or by an HTML5 data-* attribute.
1584
1851
  *
1585
1852
  * @param key Name of the data stored.
1853
+ * @see {@link https://api.jquery.com/data/#data-key}
1586
1854
  */
1587
1855
  data(key: string): any;
1588
1856
  /**
1589
1857
  * Store arbitrary data associated with the matched elements.
1590
1858
  *
1591
1859
  * @param obj An object of key-value pairs of data to update.
1860
+ * @see {@link https://api.jquery.com/data/#data-obj}
1592
1861
  */
1593
1862
  data(obj: { [key: string]: any; }): JQuery;
1594
1863
  /**
1595
1864
  * Return the value at the named data store for the first element in the jQuery collection, as set by data(name, value) or by an HTML5 data-* attribute.
1865
+ * @see {@link https://api.jquery.com/data/#data}
1596
1866
  */
1597
1867
  data(): any;
1598
1868
 
@@ -1600,6 +1870,7 @@ interface JQuery {
1600
1870
  * Execute the next function on the queue for the matched elements.
1601
1871
  *
1602
1872
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
1873
+ * @see {@link https://api.jquery.com/dequeue/}
1603
1874
  */
1604
1875
  dequeue(queueName?: string): JQuery;
1605
1876
 
@@ -1607,16 +1878,19 @@ interface JQuery {
1607
1878
  * Remove a previously-stored piece of data.
1608
1879
  *
1609
1880
  * @param name A string naming the piece of data to delete or space-separated string naming the pieces of data to delete.
1881
+ * @see {@link https://api.jquery.com/removeData/#removeData-name}
1610
1882
  */
1611
1883
  removeData(name: string): JQuery;
1612
1884
  /**
1613
1885
  * Remove a previously-stored piece of data.
1614
1886
  *
1615
1887
  * @param list An array of strings naming the pieces of data to delete.
1888
+ * @see {@link https://api.jquery.com/removeData/#removeData-list}
1616
1889
  */
1617
1890
  removeData(list: string[]): JQuery;
1618
1891
  /**
1619
1892
  * Remove all previously-stored piece of data.
1893
+ * @see {@link https://api.jquery.com/removeData/}
1620
1894
  */
1621
1895
  removeData(): JQuery;
1622
1896
 
@@ -1625,6 +1899,7 @@ interface JQuery {
1625
1899
  *
1626
1900
  * @param type The type of queue that needs to be observed. (default: fx)
1627
1901
  * @param target Object onto which the promise methods have to be attached
1902
+ * @see {@link https://api.jquery.com/promise/}
1628
1903
  */
1629
1904
  promise(type?: string, target?: Object): JQueryPromise<any>;
1630
1905
 
@@ -1634,6 +1909,7 @@ interface JQuery {
1634
1909
  * @param properties An object of CSS properties and values that the animation will move toward.
1635
1910
  * @param duration A string or number determining how long the animation will run.
1636
1911
  * @param complete A function to call once the animation is complete.
1912
+ * @see {@link https://api.jquery.com/animate/#animate-properties-duration-easing-complete}
1637
1913
  */
1638
1914
  animate(properties: Object, duration?: string|number, complete?: Function): JQuery;
1639
1915
  /**
@@ -1643,6 +1919,7 @@ interface JQuery {
1643
1919
  * @param duration A string or number determining how long the animation will run.
1644
1920
  * @param easing A string indicating which easing function to use for the transition. (default: swing)
1645
1921
  * @param complete A function to call once the animation is complete.
1922
+ * @see {@link https://api.jquery.com/animate/#animate-properties-duration-easing-complete}
1646
1923
  */
1647
1924
  animate(properties: Object, duration?: string|number, easing?: string, complete?: Function): JQuery;
1648
1925
  /**
@@ -1650,6 +1927,7 @@ interface JQuery {
1650
1927
  *
1651
1928
  * @param properties An object of CSS properties and values that the animation will move toward.
1652
1929
  * @param options A map of additional options to pass to the method.
1930
+ * @see {@link https://api.jquery.com/animate/#animate-properties-options}
1653
1931
  */
1654
1932
  animate(properties: Object, options: JQueryAnimationOptions): JQuery;
1655
1933
 
@@ -1658,6 +1936,7 @@ interface JQuery {
1658
1936
  *
1659
1937
  * @param duration An integer indicating the number of milliseconds to delay execution of the next item in the queue.
1660
1938
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
1939
+ * @see {@link https://api.jquery.com/delay/}
1661
1940
  */
1662
1941
  delay(duration: number, queueName?: string): JQuery;
1663
1942
 
@@ -1666,6 +1945,7 @@ interface JQuery {
1666
1945
  *
1667
1946
  * @param duration A string or number determining how long the animation will run.
1668
1947
  * @param complete A function to call once the animation is complete.
1948
+ * @see {@link https://api.jquery.com/fadeIn/#fadeIn-duration-complete}
1669
1949
  */
1670
1950
  fadeIn(duration?: number|string, complete?: Function): JQuery;
1671
1951
  /**
@@ -1674,12 +1954,14 @@ interface JQuery {
1674
1954
  * @param duration A string or number determining how long the animation will run.
1675
1955
  * @param easing A string indicating which easing function to use for the transition.
1676
1956
  * @param complete A function to call once the animation is complete.
1957
+ * @see {@link https://api.jquery.com/fadeIn/#fadeIn-duration-easing-complete}
1677
1958
  */
1678
1959
  fadeIn(duration?: number|string, easing?: string, complete?: Function): JQuery;
1679
1960
  /**
1680
1961
  * Display the matched elements by fading them to opaque.
1681
1962
  *
1682
1963
  * @param options A map of additional options to pass to the method.
1964
+ * @see {@link https://api.jquery.com/fadeIn/#fadeIn-options}
1683
1965
  */
1684
1966
  fadeIn(options: JQueryAnimationOptions): JQuery;
1685
1967
 
@@ -1688,6 +1970,7 @@ interface JQuery {
1688
1970
  *
1689
1971
  * @param duration A string or number determining how long the animation will run.
1690
1972
  * @param complete A function to call once the animation is complete.
1973
+ * @see {@link https://api.jquery.com/fadeOut/#fadeOut-duration-complete}
1691
1974
  */
1692
1975
  fadeOut(duration?: number|string, complete?: Function): JQuery;
1693
1976
  /**
@@ -1696,12 +1979,14 @@ interface JQuery {
1696
1979
  * @param duration A string or number determining how long the animation will run.
1697
1980
  * @param easing A string indicating which easing function to use for the transition.
1698
1981
  * @param complete A function to call once the animation is complete.
1982
+ * @see {@link https://api.jquery.com/fadeOut/#fadeOut-duration-easing-complete}
1699
1983
  */
1700
1984
  fadeOut(duration?: number|string, easing?: string, complete?: Function): JQuery;
1701
1985
  /**
1702
1986
  * Hide the matched elements by fading them to transparent.
1703
1987
  *
1704
1988
  * @param options A map of additional options to pass to the method.
1989
+ * @see {@link https://api.jquery.com/fadeOut/#fadeOut-options}
1705
1990
  */
1706
1991
  fadeOut(options: JQueryAnimationOptions): JQuery;
1707
1992
 
@@ -1711,6 +1996,7 @@ interface JQuery {
1711
1996
  * @param duration A string or number determining how long the animation will run.
1712
1997
  * @param opacity A number between 0 and 1 denoting the target opacity.
1713
1998
  * @param complete A function to call once the animation is complete.
1999
+ * @see {@link https://api.jquery.com/fadeTo/#fadeTo-duration-opacity-complete}
1714
2000
  */
1715
2001
  fadeTo(duration: string|number, opacity: number, complete?: Function): JQuery;
1716
2002
  /**
@@ -1720,6 +2006,7 @@ interface JQuery {
1720
2006
  * @param opacity A number between 0 and 1 denoting the target opacity.
1721
2007
  * @param easing A string indicating which easing function to use for the transition.
1722
2008
  * @param complete A function to call once the animation is complete.
2009
+ * @see {@link https://api.jquery.com/fadeTo/#fadeTo-duration-opacity-easing-complete}
1723
2010
  */
1724
2011
  fadeTo(duration: string|number, opacity: number, easing?: string, complete?: Function): JQuery;
1725
2012
 
@@ -1728,6 +2015,7 @@ interface JQuery {
1728
2015
  *
1729
2016
  * @param duration A string or number determining how long the animation will run.
1730
2017
  * @param complete A function to call once the animation is complete.
2018
+ * @see {@link https://api.jquery.com/fadeToggle/#fadeToggle-duration-easing-complete}
1731
2019
  */
1732
2020
  fadeToggle(duration?: number|string, complete?: Function): JQuery;
1733
2021
  /**
@@ -1736,12 +2024,14 @@ interface JQuery {
1736
2024
  * @param duration A string or number determining how long the animation will run.
1737
2025
  * @param easing A string indicating which easing function to use for the transition.
1738
2026
  * @param complete A function to call once the animation is complete.
2027
+ * @see {@link https://api.jquery.com/fadeToggle/#fadeToggle-duration-easing-complete}
1739
2028
  */
1740
2029
  fadeToggle(duration?: number|string, easing?: string, complete?: Function): JQuery;
1741
2030
  /**
1742
2031
  * Display or hide the matched elements by animating their opacity.
1743
2032
  *
1744
2033
  * @param options A map of additional options to pass to the method.
2034
+ * @see {@link https://api.jquery.com/fadeToggle/#fadeToggle-options}
1745
2035
  */
1746
2036
  fadeToggle(options: JQueryAnimationOptions): JQuery;
1747
2037
 
@@ -1749,6 +2039,7 @@ interface JQuery {
1749
2039
  * Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements.
1750
2040
  *
1751
2041
  * @param queue The name of the queue in which to stop animations.
2042
+ * @see {@link https://api.jquery.com/finish/}
1752
2043
  */
1753
2044
  finish(queue?: string): JQuery;
1754
2045
 
@@ -1757,6 +2048,7 @@ interface JQuery {
1757
2048
  *
1758
2049
  * @param duration A string or number determining how long the animation will run.
1759
2050
  * @param complete A function to call once the animation is complete.
2051
+ * @see {@link https://api.jquery.com/hide/#hide}
1760
2052
  */
1761
2053
  hide(duration?: number|string, complete?: Function): JQuery;
1762
2054
  /**
@@ -1765,12 +2057,14 @@ interface JQuery {
1765
2057
  * @param duration A string or number determining how long the animation will run.
1766
2058
  * @param easing A string indicating which easing function to use for the transition.
1767
2059
  * @param complete A function to call once the animation is complete.
2060
+ * @see {@link https://api.jquery.com/hide/#hide-duration-easing-complete}
1768
2061
  */
1769
2062
  hide(duration?: number|string, easing?: string, complete?: Function): JQuery;
1770
2063
  /**
1771
2064
  * Hide the matched elements.
1772
2065
  *
1773
2066
  * @param options A map of additional options to pass to the method.
2067
+ * @see {@link https://api.jquery.com/hide/#hide-options}
1774
2068
  */
1775
2069
  hide(options: JQueryAnimationOptions): JQuery;
1776
2070
 
@@ -1779,6 +2073,7 @@ interface JQuery {
1779
2073
  *
1780
2074
  * @param duration A string or number determining how long the animation will run.
1781
2075
  * @param complete A function to call once the animation is complete.
2076
+ * @see {@link https://api.jquery.com/show/#show}
1782
2077
  */
1783
2078
  show(duration?: number|string, complete?: Function): JQuery;
1784
2079
  /**
@@ -1787,12 +2082,14 @@ interface JQuery {
1787
2082
  * @param duration A string or number determining how long the animation will run.
1788
2083
  * @param easing A string indicating which easing function to use for the transition.
1789
2084
  * @param complete A function to call once the animation is complete.
2085
+ * @see {@link https://api.jquery.com/show/#show-duration-easing-complete}
1790
2086
  */
1791
2087
  show(duration?: number|string, easing?: string, complete?: Function): JQuery;
1792
2088
  /**
1793
2089
  * Display the matched elements.
1794
2090
  *
1795
2091
  * @param options A map of additional options to pass to the method.
2092
+ * @see {@link https://api.jquery.com/show/#show-options}
1796
2093
  */
1797
2094
  show(options: JQueryAnimationOptions): JQuery;
1798
2095
 
@@ -1801,6 +2098,7 @@ interface JQuery {
1801
2098
  *
1802
2099
  * @param duration A string or number determining how long the animation will run.
1803
2100
  * @param complete A function to call once the animation is complete.
2101
+ * @see {@link https://api.jquery.com/slideDown/#slideDown-duration-complete}
1804
2102
  */
1805
2103
  slideDown(duration?: number|string, complete?: Function): JQuery;
1806
2104
  /**
@@ -1809,12 +2107,14 @@ interface JQuery {
1809
2107
  * @param duration A string or number determining how long the animation will run.
1810
2108
  * @param easing A string indicating which easing function to use for the transition.
1811
2109
  * @param complete A function to call once the animation is complete.
2110
+ * @see {@link https://api.jquery.com/slideDown/#slideDown-duration-easing-complete}
1812
2111
  */
1813
2112
  slideDown(duration?: number|string, easing?: string, complete?: Function): JQuery;
1814
2113
  /**
1815
2114
  * Display the matched elements with a sliding motion.
1816
2115
  *
1817
2116
  * @param options A map of additional options to pass to the method.
2117
+ * @see {@link https://api.jquery.com/slideDown/#slideDown-options}
1818
2118
  */
1819
2119
  slideDown(options: JQueryAnimationOptions): JQuery;
1820
2120
 
@@ -1823,6 +2123,7 @@ interface JQuery {
1823
2123
  *
1824
2124
  * @param duration A string or number determining how long the animation will run.
1825
2125
  * @param complete A function to call once the animation is complete.
2126
+ * @see {@link https://api.jquery.com/slideToggle/#slideToggle-duration-complete}
1826
2127
  */
1827
2128
  slideToggle(duration?: number|string, complete?: Function): JQuery;
1828
2129
  /**
@@ -1831,12 +2132,14 @@ interface JQuery {
1831
2132
  * @param duration A string or number determining how long the animation will run.
1832
2133
  * @param easing A string indicating which easing function to use for the transition.
1833
2134
  * @param complete A function to call once the animation is complete.
2135
+ * @see {@link https://api.jquery.com/slideToggle/#slideToggle-duration-easing-complete}
1834
2136
  */
1835
2137
  slideToggle(duration?: number|string, easing?: string, complete?: Function): JQuery;
1836
2138
  /**
1837
2139
  * Display or hide the matched elements with a sliding motion.
1838
2140
  *
1839
2141
  * @param options A map of additional options to pass to the method.
2142
+ * @see {@link https://api.jquery.com/slideToggle/#slideToggle-options}
1840
2143
  */
1841
2144
  slideToggle(options: JQueryAnimationOptions): JQuery;
1842
2145
 
@@ -1845,6 +2148,7 @@ interface JQuery {
1845
2148
  *
1846
2149
  * @param duration A string or number determining how long the animation will run.
1847
2150
  * @param complete A function to call once the animation is complete.
2151
+ * @see {@link https://api.jquery.com/slideUp/#slideUp-duration-complete}
1848
2152
  */
1849
2153
  slideUp(duration?: number|string, complete?: Function): JQuery;
1850
2154
  /**
@@ -1853,12 +2157,14 @@ interface JQuery {
1853
2157
  * @param duration A string or number determining how long the animation will run.
1854
2158
  * @param easing A string indicating which easing function to use for the transition.
1855
2159
  * @param complete A function to call once the animation is complete.
2160
+ * @see {@link https://api.jquery.com/slideUp/#slideUp-duration-easing-complete}
1856
2161
  */
1857
2162
  slideUp(duration?: number|string, easing?: string, complete?: Function): JQuery;
1858
2163
  /**
1859
2164
  * Hide the matched elements with a sliding motion.
1860
2165
  *
1861
2166
  * @param options A map of additional options to pass to the method.
2167
+ * @see {@link https://api.jquery.com/slideUp/#slideUp-options}
1862
2168
  */
1863
2169
  slideUp(options: JQueryAnimationOptions): JQuery;
1864
2170
 
@@ -1867,6 +2173,7 @@ interface JQuery {
1867
2173
  *
1868
2174
  * @param clearQueue A Boolean indicating whether to remove queued animation as well. Defaults to false.
1869
2175
  * @param jumpToEnd A Boolean indicating whether to complete the current animation immediately. Defaults to false.
2176
+ * @see {@link https://api.jquery.com/stop/#stop-clearQueue-jumpToEnd}
1870
2177
  */
1871
2178
  stop(clearQueue?: boolean, jumpToEnd?: boolean): JQuery;
1872
2179
  /**
@@ -1875,6 +2182,7 @@ interface JQuery {
1875
2182
  * @param queue The name of the queue in which to stop animations.
1876
2183
  * @param clearQueue A Boolean indicating whether to remove queued animation as well. Defaults to false.
1877
2184
  * @param jumpToEnd A Boolean indicating whether to complete the current animation immediately. Defaults to false.
2185
+ * @see {@link https://api.jquery.com/stop/#stop-queue-clearQueue-jumpToEnd}
1878
2186
  */
1879
2187
  stop(queue?: string, clearQueue?: boolean, jumpToEnd?: boolean): JQuery;
1880
2188
 
@@ -1883,6 +2191,7 @@ interface JQuery {
1883
2191
  *
1884
2192
  * @param duration A string or number determining how long the animation will run.
1885
2193
  * @param complete A function to call once the animation is complete.
2194
+ * @see {@link https://api.jquery.com/toggle/#toggle-duration-complete}
1886
2195
  */
1887
2196
  toggle(duration?: number|string, complete?: Function): JQuery;
1888
2197
  /**
@@ -1891,18 +2200,21 @@ interface JQuery {
1891
2200
  * @param duration A string or number determining how long the animation will run.
1892
2201
  * @param easing A string indicating which easing function to use for the transition.
1893
2202
  * @param complete A function to call once the animation is complete.
2203
+ * @see {@link https://api.jquery.com/toggle/#toggle-duration-easing-complete}
1894
2204
  */
1895
2205
  toggle(duration?: number|string, easing?: string, complete?: Function): JQuery;
1896
2206
  /**
1897
2207
  * Display or hide the matched elements.
1898
2208
  *
1899
2209
  * @param options A map of additional options to pass to the method.
2210
+ * @see {@link https://api.jquery.com/toggle/#toggle-options}
1900
2211
  */
1901
2212
  toggle(options: JQueryAnimationOptions): JQuery;
1902
2213
  /**
1903
2214
  * Display or hide the matched elements.
1904
2215
  *
1905
2216
  * @param showOrHide A Boolean indicating whether to show or hide the elements.
2217
+ * @see {@link https://api.jquery.com/toggle/#toggle-display}
1906
2218
  */
1907
2219
  toggle(showOrHide: boolean): JQuery;
1908
2220
 
@@ -1912,6 +2224,7 @@ interface JQuery {
1912
2224
  * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names.
1913
2225
  * @param eventData An object containing data that will be passed to the event handler.
1914
2226
  * @param handler A function to execute each time the event is triggered.
2227
+ * @see {@link https://api.jquery.com/bind/#bind-eventType-eventData-handler}
1915
2228
  */
1916
2229
  bind(eventType: string, eventData: any, handler: (eventObject: JQueryEventObject) => any): JQuery;
1917
2230
  /**
@@ -1919,6 +2232,7 @@ interface JQuery {
1919
2232
  *
1920
2233
  * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names.
1921
2234
  * @param handler A function to execute each time the event is triggered.
2235
+ * @see {@link https://api.jquery.com/bind/#bind-eventType-eventData-handler}
1922
2236
  */
1923
2237
  bind(eventType: string, handler: (eventObject: JQueryEventObject) => any): JQuery;
1924
2238
  /**
@@ -1927,6 +2241,7 @@ interface JQuery {
1927
2241
  * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names.
1928
2242
  * @param eventData An object containing data that will be passed to the event handler.
1929
2243
  * @param preventBubble Setting the third argument to false will attach a function that prevents the default action from occurring and stops the event from bubbling. The default is true.
2244
+ * @see {@link https://api.jquery.com/bind/#bind-eventType-eventData-preventBubble}
1930
2245
  */
1931
2246
  bind(eventType: string, eventData: any, preventBubble: boolean): JQuery;
1932
2247
  /**
@@ -1934,23 +2249,27 @@ interface JQuery {
1934
2249
  *
1935
2250
  * @param eventType A string containing one or more DOM event types, such as "click" or "submit," or custom event names.
1936
2251
  * @param preventBubble Setting the third argument to false will attach a function that prevents the default action from occurring and stops the event from bubbling. The default is true.
2252
+ * @see {@link https://api.jquery.com/bind/#bind-eventType-eventData-preventBubble}
1937
2253
  */
1938
2254
  bind(eventType: string, preventBubble: boolean): JQuery;
1939
2255
  /**
1940
2256
  * Attach a handler to an event for the elements.
1941
2257
  *
1942
2258
  * @param events An object containing one or more DOM event types and functions to execute for them.
2259
+ * @see {@link https://api.jquery.com/bind/#bind-events}
1943
2260
  */
1944
2261
  bind(events: any): JQuery;
1945
2262
 
1946
2263
  /**
1947
2264
  * Trigger the "blur" event on an element
2265
+ * @see {@link https://api.jquery.com/blur/#blur}
1948
2266
  */
1949
2267
  blur(): JQuery;
1950
2268
  /**
1951
2269
  * Bind an event handler to the "blur" JavaScript event
1952
2270
  *
1953
2271
  * @param handler A function to execute each time the event is triggered.
2272
+ * @see {@link https://api.jquery.com/blur/#blur-handler}
1954
2273
  */
1955
2274
  blur(handler: (eventObject: JQueryEventObject) => any): JQuery;
1956
2275
  /**
@@ -1958,17 +2277,20 @@ interface JQuery {
1958
2277
  *
1959
2278
  * @param eventData An object containing data that will be passed to the event handler.
1960
2279
  * @param handler A function to execute each time the event is triggered.
2280
+ * @see {@link https://api.jquery.com/blur/#blur-eventData-handler}
1961
2281
  */
1962
2282
  blur(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
1963
2283
 
1964
2284
  /**
1965
2285
  * Trigger the "change" event on an element.
2286
+ * @see {@link https://api.jquery.com/change/#change}
1966
2287
  */
1967
2288
  change(): JQuery;
1968
2289
  /**
1969
2290
  * Bind an event handler to the "change" JavaScript event
1970
2291
  *
1971
2292
  * @param handler A function to execute each time the event is triggered.
2293
+ * @see {@link https://api.jquery.com/change/#change-handler}
1972
2294
  */
1973
2295
  change(handler: (eventObject: JQueryEventObject) => any): JQuery;
1974
2296
  /**
@@ -1976,17 +2298,20 @@ interface JQuery {
1976
2298
  *
1977
2299
  * @param eventData An object containing data that will be passed to the event handler.
1978
2300
  * @param handler A function to execute each time the event is triggered.
2301
+ * @see {@link https://api.jquery.com/change/#change-eventData-handler}
1979
2302
  */
1980
2303
  change(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
1981
2304
 
1982
2305
  /**
1983
2306
  * Trigger the "click" event on an element.
2307
+ * @see {@link https://api.jquery.com/click/#click}
1984
2308
  */
1985
2309
  click(): JQuery;
1986
2310
  /**
1987
2311
  * Bind an event handler to the "click" JavaScript event
1988
2312
  *
1989
2313
  * @param handler A function to execute each time the event is triggered.
2314
+ * @see {@link https://api.jquery.com/click/#click-handler}
1990
2315
  */
1991
2316
  click(handler: (eventObject: JQueryEventObject) => any): JQuery;
1992
2317
  /**
@@ -1994,17 +2319,20 @@ interface JQuery {
1994
2319
  *
1995
2320
  * @param eventData An object containing data that will be passed to the event handler.
1996
2321
  * @param handler A function to execute each time the event is triggered.
2322
+ * @see {@link https://api.jquery.com/click/#click-eventData-handler}
1997
2323
  */
1998
2324
  click(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
1999
2325
 
2000
2326
  /**
2001
2327
  * Trigger the "contextmenu" event on an element.
2328
+ * @see {@link https://api.jquery.com/contextmenu/#contextmenu}
2002
2329
  */
2003
2330
  contextmenu(): JQuery;
2004
2331
  /**
2005
2332
  * Bind an event handler to the "contextmenu" JavaScript event.
2006
2333
  *
2007
2334
  * @param handler A function to execute when the event is triggered.
2335
+ * @see {@link https://api.jquery.com/contextmenu/#contextmenu-handler}
2008
2336
  */
2009
2337
  contextmenu(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2010
2338
  /**
@@ -2012,17 +2340,20 @@ interface JQuery {
2012
2340
  *
2013
2341
  * @param eventData An object containing data that will be passed to the event handler.
2014
2342
  * @param handler A function to execute when the event is triggered.
2343
+ * @see {@link https://api.jquery.com/contextmenu/#contextmenu-eventData-handler}
2015
2344
  */
2016
2345
  contextmenu(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2017
2346
 
2018
2347
  /**
2019
2348
  * Trigger the "dblclick" event on an element.
2349
+ * @see {@link https://api.jquery.com/dblclick/#dblclick}
2020
2350
  */
2021
2351
  dblclick(): JQuery;
2022
2352
  /**
2023
2353
  * Bind an event handler to the "dblclick" JavaScript event
2024
2354
  *
2025
2355
  * @param handler A function to execute each time the event is triggered.
2356
+ * @see {@link https://api.jquery.com/dblclick/#dblclick-handler}
2026
2357
  */
2027
2358
  dblclick(handler: (eventObject: JQueryEventObject) => any): JQuery;
2028
2359
  /**
@@ -2030,20 +2361,31 @@ interface JQuery {
2030
2361
  *
2031
2362
  * @param eventData An object containing data that will be passed to the event handler.
2032
2363
  * @param handler A function to execute each time the event is triggered.
2364
+ * @see {@link https://api.jquery.com/dblclick/#dblclick-eventData-handler}
2033
2365
  */
2034
2366
  dblclick(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2035
2367
 
2368
+ /**
2369
+ * Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.
2370
+ * @see {@link https://api.jquery.com/delegate/#delegate-selector-eventType-handler}
2371
+ */
2036
2372
  delegate(selector: any, eventType: string, handler: (eventObject: JQueryEventObject) => any): JQuery;
2373
+ /**
2374
+ * Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.
2375
+ * @see {@link https://api.jquery.com/delegate/#delegate-selector-eventType-eventData-handler}
2376
+ */
2037
2377
  delegate(selector: any, eventType: string, eventData: any, handler: (eventObject: JQueryEventObject) => any): JQuery;
2038
2378
 
2039
2379
  /**
2040
2380
  * Trigger the "focus" event on an element.
2381
+ * @see {@link https://api.jquery.com/focus/#focus}
2041
2382
  */
2042
2383
  focus(): JQuery;
2043
2384
  /**
2044
2385
  * Bind an event handler to the "focus" JavaScript event
2045
2386
  *
2046
2387
  * @param handler A function to execute each time the event is triggered.
2388
+ * @see {@link https://api.jquery.com/focus/#focus-handler}
2047
2389
  */
2048
2390
  focus(handler: (eventObject: JQueryEventObject) => any): JQuery;
2049
2391
  /**
@@ -2051,17 +2393,20 @@ interface JQuery {
2051
2393
  *
2052
2394
  * @param eventData An object containing data that will be passed to the event handler.
2053
2395
  * @param handler A function to execute each time the event is triggered.
2396
+ * @see {@link https://api.jquery.com/focus/#focus-eventData-handler}
2054
2397
  */
2055
2398
  focus(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2056
2399
 
2057
2400
  /**
2058
2401
  * Trigger the "focusin" event on an element.
2402
+ * @see {@link https://api.jquery.com/focusin/#focusin}
2059
2403
  */
2060
2404
  focusin(): JQuery;
2061
2405
  /**
2062
2406
  * Bind an event handler to the "focusin" JavaScript event
2063
2407
  *
2064
2408
  * @param handler A function to execute each time the event is triggered.
2409
+ * @see {@link https://api.jquery.com/focusin/#focusin-handler}
2065
2410
  */
2066
2411
  focusin(handler: (eventObject: JQueryEventObject) => any): JQuery;
2067
2412
  /**
@@ -2069,17 +2414,20 @@ interface JQuery {
2069
2414
  *
2070
2415
  * @param eventData An object containing data that will be passed to the event handler.
2071
2416
  * @param handler A function to execute each time the event is triggered.
2417
+ * @see {@link https://api.jquery.com/focusin/#focusin-eventData-handler}
2072
2418
  */
2073
2419
  focusin(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery;
2074
2420
 
2075
2421
  /**
2076
2422
  * Trigger the "focusout" event on an element.
2423
+ * @see {@link https://api.jquery.com/focusout/#focusout}
2077
2424
  */
2078
2425
  focusout(): JQuery;
2079
2426
  /**
2080
2427
  * Bind an event handler to the "focusout" JavaScript event
2081
2428
  *
2082
2429
  * @param handler A function to execute each time the event is triggered.
2430
+ * @see {@link https://api.jquery.com/focusout/#focusout-handler}
2083
2431
  */
2084
2432
  focusout(handler: (eventObject: JQueryEventObject) => any): JQuery;
2085
2433
  /**
@@ -2087,6 +2435,7 @@ interface JQuery {
2087
2435
  *
2088
2436
  * @param eventData An object containing data that will be passed to the event handler.
2089
2437
  * @param handler A function to execute each time the event is triggered.
2438
+ * @see {@link https://api.jquery.com/focusout/#focusout-eventData-handler}
2090
2439
  */
2091
2440
  focusout(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery;
2092
2441
 
@@ -2095,23 +2444,27 @@ interface JQuery {
2095
2444
  *
2096
2445
  * @param handlerIn A function to execute when the mouse pointer enters the element.
2097
2446
  * @param handlerOut A function to execute when the mouse pointer leaves the element.
2447
+ * @see {@link https://api.jquery.com/hover/#hover-handlerIn-handlerOut}
2098
2448
  */
2099
2449
  hover(handlerIn: (eventObject: JQueryEventObject) => any, handlerOut: (eventObject: JQueryEventObject) => any): JQuery;
2100
2450
  /**
2101
2451
  * Bind a single handler to the matched elements, to be executed when the mouse pointer enters or leaves the elements.
2102
2452
  *
2103
2453
  * @param handlerInOut A function to execute when the mouse pointer enters or leaves the element.
2454
+ * @see {@link https://api.jquery.com/hover/#hover-handlerInOut}
2104
2455
  */
2105
2456
  hover(handlerInOut: (eventObject: JQueryEventObject) => any): JQuery;
2106
2457
 
2107
2458
  /**
2108
2459
  * Trigger the "keydown" event on an element.
2460
+ * @see {@link https://api.jquery.com/keydown/#keydown}
2109
2461
  */
2110
2462
  keydown(): JQuery;
2111
2463
  /**
2112
2464
  * Bind an event handler to the "keydown" JavaScript event
2113
2465
  *
2114
2466
  * @param handler A function to execute each time the event is triggered.
2467
+ * @see {@link https://api.jquery.com/keydown/#keydown-handler}
2115
2468
  */
2116
2469
  keydown(handler: (eventObject: JQueryKeyEventObject) => any): JQuery;
2117
2470
  /**
@@ -2119,17 +2472,20 @@ interface JQuery {
2119
2472
  *
2120
2473
  * @param eventData An object containing data that will be passed to the event handler.
2121
2474
  * @param handler A function to execute each time the event is triggered.
2475
+ * @see {@link https://api.jquery.com/keydown/#keydown-eventData-handler}
2122
2476
  */
2123
2477
  keydown(eventData?: any, handler?: (eventObject: JQueryKeyEventObject) => any): JQuery;
2124
2478
 
2125
2479
  /**
2126
2480
  * Trigger the "keypress" event on an element.
2481
+ * @see {@link https://api.jquery.com/keypress/#keypress}
2127
2482
  */
2128
2483
  keypress(): JQuery;
2129
2484
  /**
2130
2485
  * Bind an event handler to the "keypress" JavaScript event
2131
2486
  *
2132
2487
  * @param handler A function to execute each time the event is triggered.
2488
+ * @see {@link https://api.jquery.com/keypress/#keypress-handler}
2133
2489
  */
2134
2490
  keypress(handler: (eventObject: JQueryKeyEventObject) => any): JQuery;
2135
2491
  /**
@@ -2137,17 +2493,20 @@ interface JQuery {
2137
2493
  *
2138
2494
  * @param eventData An object containing data that will be passed to the event handler.
2139
2495
  * @param handler A function to execute each time the event is triggered.
2496
+ * @see {@link https://api.jquery.com/keypress/#keypress-eventData-handler}
2140
2497
  */
2141
2498
  keypress(eventData?: any, handler?: (eventObject: JQueryKeyEventObject) => any): JQuery;
2142
2499
 
2143
2500
  /**
2144
2501
  * Trigger the "keyup" event on an element.
2502
+ * @see {@link https://api.jquery.com/keyup/#keyup}
2145
2503
  */
2146
2504
  keyup(): JQuery;
2147
2505
  /**
2148
2506
  * Bind an event handler to the "keyup" JavaScript event
2149
2507
  *
2150
2508
  * @param handler A function to execute each time the event is triggered.
2509
+ * @see {@link https://api.jquery.com/keyup/#keyup-handler}
2151
2510
  */
2152
2511
  keyup(handler: (eventObject: JQueryKeyEventObject) => any): JQuery;
2153
2512
  /**
@@ -2155,6 +2514,7 @@ interface JQuery {
2155
2514
  *
2156
2515
  * @param eventData An object containing data that will be passed to the event handler.
2157
2516
  * @param handler A function to execute each time the event is triggered.
2517
+ * @see {@link https://api.jquery.com/keyup/#keyup-eventData-handler}
2158
2518
  */
2159
2519
  keyup(eventData?: any, handler?: (eventObject: JQueryKeyEventObject) => any): JQuery;
2160
2520
 
@@ -2162,6 +2522,7 @@ interface JQuery {
2162
2522
  * Bind an event handler to the "load" JavaScript event.
2163
2523
  *
2164
2524
  * @param handler A function to execute when the event is triggered.
2525
+ * @see {@link https://api.jquery.com/load/}
2165
2526
  */
2166
2527
  load(handler: (eventObject: JQueryEventObject) => any): JQuery;
2167
2528
  /**
@@ -2169,17 +2530,20 @@ interface JQuery {
2169
2530
  *
2170
2531
  * @param eventData An object containing data that will be passed to the event handler.
2171
2532
  * @param handler A function to execute when the event is triggered.
2533
+ * @see {@link https://api.jquery.com/load/}
2172
2534
  */
2173
2535
  load(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2174
2536
 
2175
2537
  /**
2176
2538
  * Trigger the "mousedown" event on an element.
2539
+ * @see {@link https://api.jquery.com/mousedown/#mousedown}
2177
2540
  */
2178
2541
  mousedown(): JQuery;
2179
2542
  /**
2180
2543
  * Bind an event handler to the "mousedown" JavaScript event.
2181
2544
  *
2182
2545
  * @param handler A function to execute when the event is triggered.
2546
+ * @see {@link https://api.jquery.com/mousedown/#mousedown-handler}
2183
2547
  */
2184
2548
  mousedown(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2185
2549
  /**
@@ -2187,17 +2551,20 @@ interface JQuery {
2187
2551
  *
2188
2552
  * @param eventData An object containing data that will be passed to the event handler.
2189
2553
  * @param handler A function to execute when the event is triggered.
2554
+ * @see {@link https://api.jquery.com/mousedown/#mousedown-eventData-handler}
2190
2555
  */
2191
2556
  mousedown(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2192
2557
 
2193
2558
  /**
2194
2559
  * Trigger the "mouseenter" event on an element.
2560
+ * @see {@link https://api.jquery.com/mouseenter/#mouseenter}
2195
2561
  */
2196
2562
  mouseenter(): JQuery;
2197
2563
  /**
2198
2564
  * Bind an event handler to be fired when the mouse enters an element.
2199
2565
  *
2200
2566
  * @param handler A function to execute when the event is triggered.
2567
+ * @see {@link https://api.jquery.com/mouseenter/#mouseenter-handler}
2201
2568
  */
2202
2569
  mouseenter(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2203
2570
  /**
@@ -2205,17 +2572,20 @@ interface JQuery {
2205
2572
  *
2206
2573
  * @param eventData An object containing data that will be passed to the event handler.
2207
2574
  * @param handler A function to execute when the event is triggered.
2575
+ * @see {@link https://api.jquery.com/mouseenter/#mouseenter-eventData-handler}
2208
2576
  */
2209
2577
  mouseenter(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2210
2578
 
2211
2579
  /**
2212
2580
  * Trigger the "mouseleave" event on an element.
2581
+ * @see {@link https://api.jquery.com/mouseleave/#mouseleave}
2213
2582
  */
2214
2583
  mouseleave(): JQuery;
2215
2584
  /**
2216
2585
  * Bind an event handler to be fired when the mouse leaves an element.
2217
2586
  *
2218
2587
  * @param handler A function to execute when the event is triggered.
2588
+ * @see {@link https://api.jquery.com/mouseleave/#mouseleave-handler}
2219
2589
  */
2220
2590
  mouseleave(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2221
2591
  /**
@@ -2223,17 +2593,20 @@ interface JQuery {
2223
2593
  *
2224
2594
  * @param eventData An object containing data that will be passed to the event handler.
2225
2595
  * @param handler A function to execute when the event is triggered.
2596
+ * @see {@link https://api.jquery.com/mouseleave/#mouseleave-eventData-handler}
2226
2597
  */
2227
2598
  mouseleave(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2228
2599
 
2229
2600
  /**
2230
2601
  * Trigger the "mousemove" event on an element.
2602
+ * @see {@link https://api.jquery.com/mousemove/#mousemove}
2231
2603
  */
2232
2604
  mousemove(): JQuery;
2233
2605
  /**
2234
2606
  * Bind an event handler to the "mousemove" JavaScript event.
2235
2607
  *
2236
2608
  * @param handler A function to execute when the event is triggered.
2609
+ * @see {@link https://api.jquery.com/mousemove/#mousemove-handler}
2237
2610
  */
2238
2611
  mousemove(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2239
2612
  /**
@@ -2241,17 +2614,20 @@ interface JQuery {
2241
2614
  *
2242
2615
  * @param eventData An object containing data that will be passed to the event handler.
2243
2616
  * @param handler A function to execute when the event is triggered.
2617
+ * @see {@link https://api.jquery.com/mousemove/#mousemove-eventData-handler}
2244
2618
  */
2245
2619
  mousemove(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2246
2620
 
2247
2621
  /**
2248
2622
  * Trigger the "mouseout" event on an element.
2623
+ * @see {@link https://api.jquery.com/mouseout/#mouseout}
2249
2624
  */
2250
2625
  mouseout(): JQuery;
2251
2626
  /**
2252
2627
  * Bind an event handler to the "mouseout" JavaScript event.
2253
2628
  *
2254
2629
  * @param handler A function to execute when the event is triggered.
2630
+ * @see {@link https://api.jquery.com/mouseout/#mouseout-handler}
2255
2631
  */
2256
2632
  mouseout(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2257
2633
  /**
@@ -2259,17 +2635,20 @@ interface JQuery {
2259
2635
  *
2260
2636
  * @param eventData An object containing data that will be passed to the event handler.
2261
2637
  * @param handler A function to execute when the event is triggered.
2638
+ * @see {@link https://api.jquery.com/mouseout/#mouseout-eventData-handler}
2262
2639
  */
2263
2640
  mouseout(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2264
2641
 
2265
2642
  /**
2266
2643
  * Trigger the "mouseover" event on an element.
2644
+ * @see {@link https://api.jquery.com/mouseover/#mouseover}
2267
2645
  */
2268
2646
  mouseover(): JQuery;
2269
2647
  /**
2270
2648
  * Bind an event handler to the "mouseover" JavaScript event.
2271
2649
  *
2272
2650
  * @param handler A function to execute when the event is triggered.
2651
+ * @see {@link https://api.jquery.com/mouseover/#mouseover-handler}
2273
2652
  */
2274
2653
  mouseover(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2275
2654
  /**
@@ -2277,17 +2656,20 @@ interface JQuery {
2277
2656
  *
2278
2657
  * @param eventData An object containing data that will be passed to the event handler.
2279
2658
  * @param handler A function to execute when the event is triggered.
2659
+ * @see {@link https://api.jquery.com/mouseover/#mouseover-eventData-handler}
2280
2660
  */
2281
2661
  mouseover(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2282
2662
 
2283
2663
  /**
2284
2664
  * Trigger the "mouseup" event on an element.
2665
+ * @see {@link https://api.jquery.com/mouseup/#mouseup}
2285
2666
  */
2286
2667
  mouseup(): JQuery;
2287
2668
  /**
2288
2669
  * Bind an event handler to the "mouseup" JavaScript event.
2289
2670
  *
2290
2671
  * @param handler A function to execute when the event is triggered.
2672
+ * @see {@link https://api.jquery.com/mouseup/#mouseup-handler}
2291
2673
  */
2292
2674
  mouseup(handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2293
2675
  /**
@@ -2295,11 +2677,13 @@ interface JQuery {
2295
2677
  *
2296
2678
  * @param eventData An object containing data that will be passed to the event handler.
2297
2679
  * @param handler A function to execute when the event is triggered.
2680
+ * @see {@link https://api.jquery.com/mouseup/#mouseup-eventData-handler}
2298
2681
  */
2299
2682
  mouseup(eventData: Object, handler: (eventObject: JQueryMouseEventObject) => any): JQuery;
2300
2683
 
2301
2684
  /**
2302
2685
  * Remove an event handler.
2686
+ * @see {@link https://api.jquery.com/off/#off}
2303
2687
  */
2304
2688
  off(): JQuery;
2305
2689
  /**
@@ -2308,6 +2692,7 @@ interface JQuery {
2308
2692
  * @param events One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin".
2309
2693
  * @param selector A selector which should match the one originally passed to .on() when attaching event handlers.
2310
2694
  * @param handler A handler function previously attached for the event(s), or the special value false.
2695
+ * @see {@link https://api.jquery.com/off/#off-events-selector-handler}
2311
2696
  */
2312
2697
  off(events: string, selector?: string, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2313
2698
  /**
@@ -2315,6 +2700,7 @@ interface JQuery {
2315
2700
  *
2316
2701
  * @param events One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin".
2317
2702
  * @param handler A handler function previously attached for the event(s), or the special value false. Takes handler with extra args that can be attached with on().
2703
+ * @see {@link https://api.jquery.com/off/#off-events-selector-handler}
2318
2704
  */
2319
2705
  off(events: string, handler: (eventObject: JQueryEventObject, ...args: any[]) => any): JQuery;
2320
2706
  /**
@@ -2322,6 +2708,7 @@ interface JQuery {
2322
2708
  *
2323
2709
  * @param events One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin".
2324
2710
  * @param handler A handler function previously attached for the event(s), or the special value false.
2711
+ * @see {@link https://api.jquery.com/off/#off-events-selector-handler}
2325
2712
  */
2326
2713
  off(events: string, handler: (eventObject: JQueryEventObject) => any): JQuery;
2327
2714
  /**
@@ -2329,6 +2716,7 @@ interface JQuery {
2329
2716
  *
2330
2717
  * @param events An object where the string keys represent one or more space-separated event types and optional namespaces, and the values represent handler functions previously attached for the event(s).
2331
2718
  * @param selector A selector which should match the one originally passed to .on() when attaching event handlers.
2719
+ * @see {@link https://api.jquery.com/off/#off-events-selector}
2332
2720
  */
2333
2721
  off(events: { [key: string]: any; }, selector?: string): JQuery;
2334
2722
 
@@ -2337,6 +2725,7 @@ interface JQuery {
2337
2725
  *
2338
2726
  * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".
2339
2727
  * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false. Rest parameter args is for optional parameters passed to jQuery.trigger(). Note that the actual parameters on the event handler function must be marked as optional (? syntax).
2728
+ * @see {@link https://api.jquery.com/on/#on-events-selector-data-handler}
2340
2729
  */
2341
2730
  on(events: string, handler: (eventObject: JQueryEventObject, ...args: any[]) => any): JQuery;
2342
2731
  /**
@@ -2345,6 +2734,7 @@ interface JQuery {
2345
2734
  * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".
2346
2735
  * @param data Data to be passed to the handler in event.data when an event is triggered.
2347
2736
  * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.
2737
+ * @see {@link https://api.jquery.com/on/#on-events-selector-data-handler}
2348
2738
  */
2349
2739
  on(events: string, data : any, handler: (eventObject: JQueryEventObject, ...args: any[]) => any): JQuery;
2350
2740
  /**
@@ -2353,6 +2743,7 @@ interface JQuery {
2353
2743
  * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".
2354
2744
  * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.
2355
2745
  * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.
2746
+ * @see {@link https://api.jquery.com/on/#on-events-selector-data-handler}
2356
2747
  */
2357
2748
  on(events: string, selector: string, handler: (eventObject: JQueryEventObject, ...eventData: any[]) => any): JQuery;
2358
2749
  /**
@@ -2362,6 +2753,7 @@ interface JQuery {
2362
2753
  * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.
2363
2754
  * @param data Data to be passed to the handler in event.data when an event is triggered.
2364
2755
  * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.
2756
+ * @see {@link https://api.jquery.com/on/#on-events-selector-data-handler}
2365
2757
  */
2366
2758
  on(events: string, selector: string, data: any, handler: (eventObject: JQueryEventObject, ...eventData: any[]) => any): JQuery;
2367
2759
  /**
@@ -2370,6 +2762,7 @@ interface JQuery {
2370
2762
  * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s).
2371
2763
  * @param selector A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element.
2372
2764
  * @param data Data to be passed to the handler in event.data when an event occurs.
2765
+ * @see {@link https://api.jquery.com/on/#on-events-selector-data}
2373
2766
  */
2374
2767
  on(events: { [key: string]: any; }, selector?: string, data?: any): JQuery;
2375
2768
  /**
@@ -2377,6 +2770,7 @@ interface JQuery {
2377
2770
  *
2378
2771
  * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s).
2379
2772
  * @param data Data to be passed to the handler in event.data when an event occurs.
2773
+ * @see {@link https://api.jquery.com/on/#on-events-selector-data}
2380
2774
  */
2381
2775
  on(events: { [key: string]: any; }, data?: any): JQuery;
2382
2776
 
@@ -2385,6 +2779,7 @@ interface JQuery {
2385
2779
  *
2386
2780
  * @param events A string containing one or more JavaScript event types, such as "click" or "submit," or custom event names.
2387
2781
  * @param handler A function to execute at the time the event is triggered.
2782
+ * @see {@link https://api.jquery.com/one/#one-events-data-handler}
2388
2783
  */
2389
2784
  one(events: string, handler: (eventObject: JQueryEventObject) => any): JQuery;
2390
2785
  /**
@@ -2393,6 +2788,7 @@ interface JQuery {
2393
2788
  * @param events A string containing one or more JavaScript event types, such as "click" or "submit," or custom event names.
2394
2789
  * @param data An object containing data that will be passed to the event handler.
2395
2790
  * @param handler A function to execute at the time the event is triggered.
2791
+ * @see {@link https://api.jquery.com/one/#one-events-data-handler}
2396
2792
  */
2397
2793
  one(events: string, data: Object, handler: (eventObject: JQueryEventObject) => any): JQuery;
2398
2794
 
@@ -2402,6 +2798,7 @@ interface JQuery {
2402
2798
  * @param events One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".
2403
2799
  * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.
2404
2800
  * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.
2801
+ * @see {@link https://api.jquery.com/one/#one-events-selector-data-handler}
2405
2802
  */
2406
2803
  one(events: string, selector: string, handler: (eventObject: JQueryEventObject) => any): JQuery;
2407
2804
  /**
@@ -2411,6 +2808,7 @@ interface JQuery {
2411
2808
  * @param selector A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.
2412
2809
  * @param data Data to be passed to the handler in event.data when an event is triggered.
2413
2810
  * @param handler A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.
2811
+ * @see {@link https://api.jquery.com/one/#one-events-selector-data-handler}
2414
2812
  */
2415
2813
  one(events: string, selector: string, data: any, handler: (eventObject: JQueryEventObject) => any): JQuery;
2416
2814
 
@@ -2420,6 +2818,7 @@ interface JQuery {
2420
2818
  * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s).
2421
2819
  * @param selector A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element.
2422
2820
  * @param data Data to be passed to the handler in event.data when an event occurs.
2821
+ * @see {@link https://api.jquery.com/one/#one-events-selector-data}
2423
2822
  */
2424
2823
  one(events: { [key: string]: any; }, selector?: string, data?: any): JQuery;
2425
2824
 
@@ -2428,6 +2827,7 @@ interface JQuery {
2428
2827
  *
2429
2828
  * @param events An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s).
2430
2829
  * @param data Data to be passed to the handler in event.data when an event occurs.
2830
+ * @see {@link https://api.jquery.com/one/#one-events-selector-data}
2431
2831
  */
2432
2832
  one(events: { [key: string]: any; }, data?: any): JQuery;
2433
2833
 
@@ -2436,17 +2836,20 @@ interface JQuery {
2436
2836
  * Specify a function to execute when the DOM is fully loaded.
2437
2837
  *
2438
2838
  * @param handler A function to execute after the DOM is ready.
2839
+ * @see {@link https://api.jquery.com/ready/}
2439
2840
  */
2440
2841
  ready(handler: (jQueryAlias?: JQueryStatic) => any): JQuery;
2441
2842
 
2442
2843
  /**
2443
2844
  * Trigger the "resize" event on an element.
2845
+ * @see {@link https://api.jquery.com/resize/#resize}
2444
2846
  */
2445
2847
  resize(): JQuery;
2446
2848
  /**
2447
2849
  * Bind an event handler to the "resize" JavaScript event.
2448
2850
  *
2449
2851
  * @param handler A function to execute each time the event is triggered.
2852
+ * @see {@link https://api.jquery.com/resize/#resize-handler}
2450
2853
  */
2451
2854
  resize(handler: (eventObject: JQueryEventObject) => any): JQuery;
2452
2855
  /**
@@ -2454,17 +2857,20 @@ interface JQuery {
2454
2857
  *
2455
2858
  * @param eventData An object containing data that will be passed to the event handler.
2456
2859
  * @param handler A function to execute each time the event is triggered.
2860
+ * @see {@link https://api.jquery.com/resize/#resize-eventData-handler}
2457
2861
  */
2458
2862
  resize(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery;
2459
2863
 
2460
2864
  /**
2461
2865
  * Trigger the "scroll" event on an element.
2866
+ * @see {@link https://api.jquery.com/scroll/#scroll}
2462
2867
  */
2463
2868
  scroll(): JQuery;
2464
2869
  /**
2465
2870
  * Bind an event handler to the "scroll" JavaScript event.
2466
2871
  *
2467
2872
  * @param handler A function to execute each time the event is triggered.
2873
+ * @see {@link https://api.jquery.com/scroll/#scroll-handler}
2468
2874
  */
2469
2875
  scroll(handler: (eventObject: JQueryEventObject) => any): JQuery;
2470
2876
  /**
@@ -2472,17 +2878,20 @@ interface JQuery {
2472
2878
  *
2473
2879
  * @param eventData An object containing data that will be passed to the event handler.
2474
2880
  * @param handler A function to execute each time the event is triggered.
2881
+ * @see {@link https://api.jquery.com/scroll/#scroll-eventData-handler}
2475
2882
  */
2476
2883
  scroll(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery;
2477
2884
 
2478
2885
  /**
2479
2886
  * Trigger the "select" event on an element.
2887
+ * @see {@link https://api.jquery.com/select/#select}
2480
2888
  */
2481
2889
  select(): JQuery;
2482
2890
  /**
2483
2891
  * Bind an event handler to the "select" JavaScript event.
2484
2892
  *
2485
2893
  * @param handler A function to execute each time the event is triggered.
2894
+ * @see {@link https://api.jquery.com/select/#select-handler}
2486
2895
  */
2487
2896
  select(handler: (eventObject: JQueryEventObject) => any): JQuery;
2488
2897
  /**
@@ -2490,17 +2899,20 @@ interface JQuery {
2490
2899
  *
2491
2900
  * @param eventData An object containing data that will be passed to the event handler.
2492
2901
  * @param handler A function to execute each time the event is triggered.
2902
+ * @see {@link https://api.jquery.com/select/#select-eventData-handler}
2493
2903
  */
2494
2904
  select(eventData: Object, handler: (eventObject: JQueryEventObject) => any): JQuery;
2495
2905
 
2496
2906
  /**
2497
2907
  * Trigger the "submit" event on an element.
2908
+ * @see {@link https://api.jquery.com/submit/#submit}
2498
2909
  */
2499
2910
  submit(): JQuery;
2500
2911
  /**
2501
2912
  * Bind an event handler to the "submit" JavaScript event
2502
2913
  *
2503
2914
  * @param handler A function to execute each time the event is triggered.
2915
+ * @see {@link https://api.jquery.com/submit/#submit-handler}
2504
2916
  */
2505
2917
  submit(handler: (eventObject: JQueryEventObject) => any): JQuery;
2506
2918
  /**
@@ -2508,6 +2920,7 @@ interface JQuery {
2508
2920
  *
2509
2921
  * @param eventData An object containing data that will be passed to the event handler.
2510
2922
  * @param handler A function to execute each time the event is triggered.
2923
+ * @see {@link https://api.jquery.com/submit/#submit-eventData-handler}
2511
2924
  */
2512
2925
  submit(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2513
2926
 
@@ -2516,6 +2929,7 @@ interface JQuery {
2516
2929
  *
2517
2930
  * @param eventType A string containing a JavaScript event type, such as click or submit.
2518
2931
  * @param extraParameters Additional parameters to pass along to the event handler.
2932
+ * @see {@link https://api.jquery.com/trigger/#trigger-eventType-extraParameters}
2519
2933
  */
2520
2934
  trigger(eventType: string, extraParameters?: any[]|Object): JQuery;
2521
2935
  /**
@@ -2523,6 +2937,7 @@ interface JQuery {
2523
2937
  *
2524
2938
  * @param event A jQuery.Event object.
2525
2939
  * @param extraParameters Additional parameters to pass along to the event handler.
2940
+ * @see {@link https://api.jquery.com/trigger/#trigger-event-extraParameters}
2526
2941
  */
2527
2942
  trigger(event: JQueryEventObject, extraParameters?: any[]|Object): JQuery;
2528
2943
 
@@ -2531,6 +2946,7 @@ interface JQuery {
2531
2946
  *
2532
2947
  * @param eventType A string containing a JavaScript event type, such as click or submit.
2533
2948
  * @param extraParameters An array of additional parameters to pass along to the event handler.
2949
+ * @see {@link https://api.jquery.com/triggerHandler/#triggerHandler-eventType-extraParameters}
2534
2950
  */
2535
2951
  triggerHandler(eventType: string, ...extraParameters: any[]): Object;
2536
2952
 
@@ -2539,6 +2955,7 @@ interface JQuery {
2539
2955
  *
2540
2956
  * @param event A jQuery.Event object.
2541
2957
  * @param extraParameters An array of additional parameters to pass along to the event handler.
2958
+ * @see {@link https://api.jquery.com/triggerHandler/#triggerHandler-event-extraParameters}
2542
2959
  */
2543
2960
  triggerHandler(event: JQueryEventObject, ...extraParameters: any[]): Object;
2544
2961
 
@@ -2547,6 +2964,7 @@ interface JQuery {
2547
2964
  *
2548
2965
  * @param eventType A string containing a JavaScript event type, such as click or submit.
2549
2966
  * @param handler The function that is to be no longer executed.
2967
+ * @see {@link https://api.jquery.com/unbind/#unbind-eventType-handler}
2550
2968
  */
2551
2969
  unbind(eventType?: string, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2552
2970
  /**
@@ -2554,17 +2972,20 @@ interface JQuery {
2554
2972
  *
2555
2973
  * @param eventType A string containing a JavaScript event type, such as click or submit.
2556
2974
  * @param fls Unbinds the corresponding 'return false' function that was bound using .bind( eventType, false ).
2975
+ * @see {@link https://api.jquery.com/unbind/#unbind-eventType-false}
2557
2976
  */
2558
2977
  unbind(eventType: string, fls: boolean): JQuery;
2559
2978
  /**
2560
2979
  * Remove a previously-attached event handler from the elements.
2561
2980
  *
2562
2981
  * @param evt A JavaScript event object as passed to an event handler.
2982
+ * @see {@link https://api.jquery.com/unbind/#unbind-event}
2563
2983
  */
2564
2984
  unbind(evt: any): JQuery;
2565
2985
 
2566
2986
  /**
2567
2987
  * Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.
2988
+ * @see {@link https://api.jquery.com/undelegate/#undelegate}
2568
2989
  */
2569
2990
  undelegate(): JQuery;
2570
2991
  /**
@@ -2573,6 +2994,7 @@ interface JQuery {
2573
2994
  * @param selector A selector which will be used to filter the event results.
2574
2995
  * @param eventType A string containing a JavaScript event type, such as "click" or "keydown"
2575
2996
  * @param handler A function to execute at the time the event is triggered.
2997
+ * @see {@link https://api.jquery.com/undelegate/#undelegate-selector-eventType}
2576
2998
  */
2577
2999
  undelegate(selector: string, eventType: string, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2578
3000
  /**
@@ -2580,12 +3002,14 @@ interface JQuery {
2580
3002
  *
2581
3003
  * @param selector A selector which will be used to filter the event results.
2582
3004
  * @param events An object of one or more event types and previously bound functions to unbind from them.
3005
+ * @see {@link https://api.jquery.com/undelegate/#undelegate-selector-events}
2583
3006
  */
2584
3007
  undelegate(selector: string, events: Object): JQuery;
2585
3008
  /**
2586
3009
  * Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.
2587
3010
  *
2588
3011
  * @param namespace A string containing a namespace to unbind all events from.
3012
+ * @see {@link https://api.jquery.com/undelegate/#undelegate-namespace}
2589
3013
  */
2590
3014
  undelegate(namespace: string): JQuery;
2591
3015
 
@@ -2593,6 +3017,7 @@ interface JQuery {
2593
3017
  * Bind an event handler to the "unload" JavaScript event. (DEPRECATED from v1.8)
2594
3018
  *
2595
3019
  * @param handler A function to execute when the event is triggered.
3020
+ * @see {@link https://api.jquery.com/unload/#unload-handler}
2596
3021
  */
2597
3022
  unload(handler: (eventObject: JQueryEventObject) => any): JQuery;
2598
3023
  /**
@@ -2600,11 +3025,13 @@ interface JQuery {
2600
3025
  *
2601
3026
  * @param eventData A plain object of data that will be passed to the event handler.
2602
3027
  * @param handler A function to execute when the event is triggered.
3028
+ * @see {@link https://api.jquery.com/unload/#unload-eventData-handler}
2603
3029
  */
2604
3030
  unload(eventData?: any, handler?: (eventObject: JQueryEventObject) => any): JQuery;
2605
3031
 
2606
3032
  /**
2607
3033
  * The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document. (DEPRECATED from v1.10)
3034
+ * @see {@link https://api.jquery.com/context/}
2608
3035
  */
2609
3036
  context: Element;
2610
3037
 
@@ -2614,6 +3041,7 @@ interface JQuery {
2614
3041
  * Bind an event handler to the "error" JavaScript event. (DEPRECATED from v1.8)
2615
3042
  *
2616
3043
  * @param handler A function to execute when the event is triggered.
3044
+ * @see {@link https://api.jquery.com/error/#error-handler}
2617
3045
  */
2618
3046
  error(handler: (eventObject: JQueryEventObject) => any): JQuery;
2619
3047
  /**
@@ -2621,6 +3049,7 @@ interface JQuery {
2621
3049
  *
2622
3050
  * @param eventData A plain object of data that will be passed to the event handler.
2623
3051
  * @param handler A function to execute when the event is triggered.
3052
+ * @see {@link https://api.jquery.com/error/#error-eventData-handler}
2624
3053
  */
2625
3054
  error(eventData: any, handler: (eventObject: JQueryEventObject) => any): JQuery;
2626
3055
 
@@ -2628,6 +3057,7 @@ interface JQuery {
2628
3057
  * Add a collection of DOM elements onto the jQuery stack.
2629
3058
  *
2630
3059
  * @param elements An array of elements to push onto the stack and make into a new jQuery object.
3060
+ * @see {@link https://api.jquery.com/pushStack/#pushStack-elements}
2631
3061
  */
2632
3062
  pushStack(elements: any[]): JQuery;
2633
3063
  /**
@@ -2636,34 +3066,39 @@ interface JQuery {
2636
3066
  * @param elements An array of elements to push onto the stack and make into a new jQuery object.
2637
3067
  * @param name The name of a jQuery method that generated the array of elements.
2638
3068
  * @param arguments The arguments that were passed in to the jQuery method (for serialization).
3069
+ * @see {@link https://api.jquery.com/pushStack/#pushStack-elements-name-arguments}
2639
3070
  */
2640
3071
  pushStack(elements: any[], name: string, arguments: any[]): JQuery;
2641
3072
 
2642
3073
  /**
2643
3074
  * Insert content, specified by the parameter, after each element in the set of matched elements.
2644
3075
  *
2645
- * param content1 HTML string, DOM element, DocumentFragment, array of elements, or jQuery object to insert after each element in the set of matched elements.
2646
- * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.
3076
+ * @param content1 HTML string, DOM element, DocumentFragment, array of elements, or jQuery object to insert after each element in the set of matched elements.
3077
+ * @param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.
3078
+ * @see {@link https://api.jquery.com/after/#after-content-content}
2647
3079
  */
2648
3080
  after(content1: JQuery|any[]|Element|DocumentFragment|Text|string, ...content2: any[]): JQuery;
2649
3081
  /**
2650
3082
  * Insert content, specified by the parameter, after each element in the set of matched elements.
2651
3083
  *
2652
- * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.
3084
+ * @param func A function that returns an HTML string, DOM element(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.
3085
+ * @see {@link https://api.jquery.com/after/#after-function}
2653
3086
  */
2654
3087
  after(func: (index: number, html: string) => string|Element|JQuery): JQuery;
2655
3088
 
2656
3089
  /**
2657
3090
  * Insert content, specified by the parameter, to the end of each element in the set of matched elements.
2658
3091
  *
2659
- * param content1 DOM element, DocumentFragment, array of elements, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.
2660
- * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.
3092
+ * @param content1 DOM element, DocumentFragment, array of elements, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.
3093
+ * @param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.
3094
+ * @see {@link https://api.jquery.com/append/#append-content-content}
2661
3095
  */
2662
3096
  append(content1: JQuery|any[]|Element|DocumentFragment|Text|string, ...content2: any[]): JQuery;
2663
3097
  /**
2664
3098
  * Insert content, specified by the parameter, to the end of each element in the set of matched elements.
2665
3099
  *
2666
- * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert at the end of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.
3100
+ * @param func A function that returns an HTML string, DOM element(s), or jQuery object to insert at the end of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.
3101
+ * @see {@link https://api.jquery.com/append/#append-function}
2667
3102
  */
2668
3103
  append(func: (index: number, html: string) => string|Element|JQuery): JQuery;
2669
3104
 
@@ -2671,68 +3106,78 @@ interface JQuery {
2671
3106
  * Insert every element in the set of matched elements to the end of the target.
2672
3107
  *
2673
3108
  * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter.
3109
+ * @see {@link https://api.jquery.com/appendTo/}
2674
3110
  */
2675
3111
  appendTo(target: JQuery|any[]|Element|string): JQuery;
2676
3112
 
2677
3113
  /**
2678
3114
  * Insert content, specified by the parameter, before each element in the set of matched elements.
2679
3115
  *
2680
- * param content1 HTML string, DOM element, DocumentFragment, array of elements, or jQuery object to insert before each element in the set of matched elements.
2681
- * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.
3116
+ * @param content1 HTML string, DOM element, DocumentFragment, array of elements, or jQuery object to insert before each element in the set of matched elements.
3117
+ * @param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.
3118
+ * @see {@link https://api.jquery.com/before/#before-content-content}
2682
3119
  */
2683
3120
  before(content1: JQuery|any[]|Element|DocumentFragment|Text|string, ...content2: any[]): JQuery;
2684
3121
  /**
2685
3122
  * Insert content, specified by the parameter, before each element in the set of matched elements.
2686
3123
  *
2687
- * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert before each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.
3124
+ * @param func A function that returns an HTML string, DOM element(s), or jQuery object to insert before each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.
3125
+ * @see {@link https://api.jquery.com/before/#before-function}
2688
3126
  */
2689
3127
  before(func: (index: number, html: string) => string|Element|JQuery): JQuery;
2690
3128
 
2691
3129
  /**
2692
3130
  * Create a deep copy of the set of matched elements.
2693
3131
  *
2694
- * param withDataAndEvents A Boolean indicating whether event handlers and data should be copied along with the elements. The default value is false.
2695
- * param deepWithDataAndEvents A Boolean indicating whether event handlers and data for all children of the cloned element should be copied. By default its value matches the first argument's value (which defaults to false).
3132
+ * @param withDataAndEvents A Boolean indicating whether event handlers and data should be copied along with the elements. The default value is false.
3133
+ * @param deepWithDataAndEvents A Boolean indicating whether event handlers and data for all children of the cloned element should be copied. By default its value matches the first argument's value (which defaults to false).
3134
+ * @see {@link https://api.jquery.com/clone/}
2696
3135
  */
2697
3136
  clone(withDataAndEvents?: boolean, deepWithDataAndEvents?: boolean): JQuery;
2698
3137
 
2699
3138
  /**
2700
3139
  * Remove the set of matched elements from the DOM.
2701
3140
  *
2702
- * param selector A selector expression that filters the set of matched elements to be removed.
3141
+ * @param selector A selector expression that filters the set of matched elements to be removed.
3142
+ * @see {@link https://api.jquery.com/detach/}
2703
3143
  */
2704
3144
  detach(selector?: string): JQuery;
2705
3145
 
2706
3146
  /**
2707
3147
  * Remove all child nodes of the set of matched elements from the DOM.
3148
+ * @see {@link https://api.jquery.com/empty/}
2708
3149
  */
2709
3150
  empty(): JQuery;
2710
3151
 
2711
3152
  /**
2712
3153
  * Insert every element in the set of matched elements after the target.
2713
3154
  *
2714
- * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter.
3155
+ * @param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter.
3156
+ * @see {@link https://api.jquery.com/insertAfter/}
2715
3157
  */
2716
3158
  insertAfter(target: JQuery|any[]|Element|Text|string): JQuery;
2717
3159
 
2718
3160
  /**
2719
3161
  * Insert every element in the set of matched elements before the target.
2720
3162
  *
2721
- * param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter.
3163
+ * @param target A selector, element, array of elements, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter.
3164
+ * @see {@link https://api.jquery.com/insertBefore/}
2722
3165
  */
2723
3166
  insertBefore(target: JQuery|any[]|Element|Text|string): JQuery;
2724
3167
 
2725
3168
  /**
2726
3169
  * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
2727
3170
  *
2728
- * param content1 DOM element, DocumentFragment, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.
2729
- * param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.
3171
+ * @param content1 DOM element, DocumentFragment, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.
3172
+ * @param content2 One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.
3173
+ * @see {@link https://api.jquery.com/prepend/#prepend-content-content}
2730
3174
  */
2731
3175
  prepend(content1: JQuery|any[]|Element|DocumentFragment|Text|string, ...content2: any[]): JQuery;
2732
3176
  /**
2733
3177
  * Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
2734
3178
  *
2735
- * param func A function that returns an HTML string, DOM element(s), or jQuery object to insert at the beginning of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.
3179
+ * @param func A function that returns an HTML string, DOM element(s), or jQuery object to insert at the beginning of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.
3180
+ * @see {@link https://api.jquery.com/prepend/#prepend-function}
2736
3181
  */
2737
3182
  prepend(func: (index: number, html: string) => string|Element|JQuery): JQuery;
2738
3183
 
@@ -2740,6 +3185,7 @@ interface JQuery {
2740
3185
  * Insert every element in the set of matched elements to the beginning of the target.
2741
3186
  *
2742
3187
  * @param target A selector, element, HTML string, array of elements, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter.
3188
+ * @see {@link https://api.jquery.com/prependTo/}
2743
3189
  */
2744
3190
  prependTo(target: JQuery|any[]|Element|string): JQuery;
2745
3191
 
@@ -2747,6 +3193,7 @@ interface JQuery {
2747
3193
  * Remove the set of matched elements from the DOM.
2748
3194
  *
2749
3195
  * @param selector A selector expression that filters the set of matched elements to be removed.
3196
+ * @see {@link https://api.jquery.com/remove/}
2750
3197
  */
2751
3198
  remove(selector?: string): JQuery;
2752
3199
 
@@ -2754,47 +3201,55 @@ interface JQuery {
2754
3201
  * Replace each target element with the set of matched elements.
2755
3202
  *
2756
3203
  * @param target A selector string, jQuery object, DOM element, or array of elements indicating which element(s) to replace.
3204
+ * @see {@link https://api.jquery.com/replaceAll/}
2757
3205
  */
2758
3206
  replaceAll(target: JQuery|any[]|Element|string): JQuery;
2759
3207
 
2760
3208
  /**
2761
3209
  * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
2762
3210
  *
2763
- * param newContent The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object.
3211
+ * @param newContent The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object.
3212
+ * @see {@link https://api.jquery.com/replaceWith/#replaceWith-newContent}
2764
3213
  */
2765
3214
  replaceWith(newContent: JQuery|any[]|Element|Text|string): JQuery;
2766
3215
  /**
2767
3216
  * Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
2768
3217
  *
2769
- * param func A function that returns content with which to replace the set of matched elements.
3218
+ * @param func A function that returns content with which to replace the set of matched elements.
3219
+ * @see {@link https://api.jquery.com/replaceWith/#replaceWith-function}
2770
3220
  */
2771
3221
  replaceWith(func: () => Element|JQuery): JQuery;
2772
3222
 
2773
3223
  /**
2774
3224
  * Get the combined text contents of each element in the set of matched elements, including their descendants.
3225
+ * @see {@link https://api.jquery.com/text/#text}
2775
3226
  */
2776
3227
  text(): string;
2777
3228
  /**
2778
3229
  * Set the content of each element in the set of matched elements to the specified text.
2779
3230
  *
2780
3231
  * @param text The text to set as the content of each matched element. When Number or Boolean is supplied, it will be converted to a String representation.
3232
+ * @see {@link https://api.jquery.com/text/#text-text}
2781
3233
  */
2782
3234
  text(text: string|number|boolean): JQuery;
2783
3235
  /**
2784
3236
  * Set the content of each element in the set of matched elements to the specified text.
2785
3237
  *
2786
3238
  * @param func A function returning the text content to set. Receives the index position of the element in the set and the old text value as arguments.
3239
+ * @see {@link https://api.jquery.com/text/#text-function}
2787
3240
  */
2788
3241
  text(func: (index: number, text: string) => string): JQuery;
2789
3242
 
2790
3243
  /**
2791
3244
  * Retrieve all the elements contained in the jQuery set, as an array.
2792
3245
  * @name toArray
3246
+ * @see {@link https://api.jquery.com/toArray/}
2793
3247
  */
2794
3248
  toArray(): HTMLElement[];
2795
3249
 
2796
3250
  /**
2797
3251
  * Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place.
3252
+ * @see {@link https://api.jquery.com/unwrap/}
2798
3253
  */
2799
3254
  unwrap(): JQuery;
2800
3255
 
@@ -2802,12 +3257,14 @@ interface JQuery {
2802
3257
  * Wrap an HTML structure around each element in the set of matched elements.
2803
3258
  *
2804
3259
  * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements.
3260
+ * @see {@link https://api.jquery.com/wrap/#wrap-wrappingElement}
2805
3261
  */
2806
3262
  wrap(wrappingElement: JQuery|Element|string): JQuery;
2807
3263
  /**
2808
3264
  * Wrap an HTML structure around each element in the set of matched elements.
2809
3265
  *
2810
3266
  * @param func A callback function returning the HTML content or jQuery object to wrap around the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.
3267
+ * @see {@link https://api.jquery.com/wrap/#wrap-function}
2811
3268
  */
2812
3269
  wrap(func: (index: number) => string|JQuery): JQuery;
2813
3270
 
@@ -2815,20 +3272,29 @@ interface JQuery {
2815
3272
  * Wrap an HTML structure around all elements in the set of matched elements.
2816
3273
  *
2817
3274
  * @param wrappingElement A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements.
3275
+ * @see {@link https://api.jquery.com/wrapAll/#wrapAll-wrappingElement}
2818
3276
  */
2819
3277
  wrapAll(wrappingElement: JQuery|Element|string): JQuery;
3278
+ /**
3279
+ * Wrap an HTML structure around all elements in the set of matched elements.
3280
+ *
3281
+ * @param func A callback function returning the HTML content or jQuery object to wrap around all the matched elements. Within the function, this refers to the first element in the set.
3282
+ * @see {@link https://api.jquery.com/wrapAll/#wrapAll-function}
3283
+ */
2820
3284
  wrapAll(func: (index: number) => string): JQuery;
2821
3285
 
2822
3286
  /**
2823
3287
  * Wrap an HTML structure around the content of each element in the set of matched elements.
2824
3288
  *
2825
3289
  * @param wrappingElement An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the content of the matched elements.
3290
+ * @see {@link https://api.jquery.com/wrapInner/#wrapInner-wrappingElement}
2826
3291
  */
2827
3292
  wrapInner(wrappingElement: JQuery|Element|string): JQuery;
2828
3293
  /**
2829
3294
  * Wrap an HTML structure around the content of each element in the set of matched elements.
2830
3295
  *
2831
3296
  * @param func A callback function which generates a structure to wrap around the content of the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.
3297
+ * @see {@link https://api.jquery.com/wrapInner/#wrapInner-function}
2832
3298
  */
2833
3299
  wrapInner(func: (index: number) => string): JQuery;
2834
3300
 
@@ -2836,6 +3302,7 @@ interface JQuery {
2836
3302
  * Iterate over a jQuery object, executing a function for each matched element.
2837
3303
  *
2838
3304
  * @param func A function to execute for each matched element.
3305
+ * @see {@link https://api.jquery.com/each/}
2839
3306
  */
2840
3307
  each(func: (index: number, elem: Element) => any): JQuery;
2841
3308
 
@@ -2843,32 +3310,38 @@ interface JQuery {
2843
3310
  * Retrieve one of the elements matched by the jQuery object.
2844
3311
  *
2845
3312
  * @param index A zero-based integer indicating which element to retrieve.
3313
+ * @see {@link https://api.jquery.com/get/#get-index}
2846
3314
  */
2847
3315
  get(index: number): HTMLElement;
2848
3316
  /**
2849
3317
  * Retrieve the elements matched by the jQuery object.
2850
3318
  * @alias toArray
3319
+ * @see {@link https://api.jquery.com/get/#get}
2851
3320
  */
2852
3321
  get(): HTMLElement[];
2853
3322
 
2854
3323
  /**
2855
3324
  * Search for a given element from among the matched elements.
3325
+ * @see {@link https://api.jquery.com/index/#index}
2856
3326
  */
2857
3327
  index(): number;
2858
3328
  /**
2859
3329
  * Search for a given element from among the matched elements.
2860
3330
  *
2861
3331
  * @param selector A selector representing a jQuery collection in which to look for an element.
3332
+ * @see {@link https://api.jquery.com/index/#index-selector}
2862
3333
  */
2863
3334
  index(selector: string|JQuery|Element): number;
2864
3335
 
2865
3336
  /**
2866
3337
  * The number of elements in the jQuery object.
3338
+ * @see {@link https://api.jquery.com/length/}
2867
3339
  */
2868
3340
  length: number;
2869
3341
  /**
2870
3342
  * A selector representing selector passed to jQuery(), if any, when creating the original set.
2871
3343
  * version deprecated: 1.7, removed: 1.9
3344
+ * @see {@link https://api.jquery.com/selector/}
2872
3345
  */
2873
3346
  selector: string;
2874
3347
  [index: string]: any;
@@ -2879,24 +3352,28 @@ interface JQuery {
2879
3352
  *
2880
3353
  * @param selector A string representing a selector expression to find additional elements to add to the set of matched elements.
2881
3354
  * @param context The point in the document at which the selector should begin matching; similar to the context argument of the $(selector, context) method.
3355
+ * @see {@link https://api.jquery.com/add/#add-selector}
2882
3356
  */
2883
3357
  add(selector: string, context?: Element): JQuery;
2884
3358
  /**
2885
3359
  * Add elements to the set of matched elements.
2886
3360
  *
2887
3361
  * @param elements One or more elements to add to the set of matched elements.
3362
+ * @see {@link https://api.jquery.com/add/#add-elements}
2888
3363
  */
2889
3364
  add(...elements: Element[]): JQuery;
2890
3365
  /**
2891
3366
  * Add elements to the set of matched elements.
2892
3367
  *
2893
3368
  * @param html An HTML fragment to add to the set of matched elements.
3369
+ * @see {@link https://api.jquery.com/add/#add-html}
2894
3370
  */
2895
3371
  add(html: string): JQuery;
2896
3372
  /**
2897
3373
  * Add elements to the set of matched elements.
2898
3374
  *
2899
3375
  * @param obj An existing jQuery object to add to the set of matched elements.
3376
+ * @see {@link https://api.jquery.com/add/#add-selection}
2900
3377
  */
2901
3378
  add(obj: JQuery): JQuery;
2902
3379
 
@@ -2904,6 +3381,7 @@ interface JQuery {
2904
3381
  * Get the children of each element in the set of matched elements, optionally filtered by a selector.
2905
3382
  *
2906
3383
  * @param selector A string containing a selector expression to match elements against.
3384
+ * @see {@link https://api.jquery.com/children/}
2907
3385
  */
2908
3386
  children(selector?: string): JQuery;
2909
3387
 
@@ -2911,6 +3389,7 @@ interface JQuery {
2911
3389
  * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
2912
3390
  *
2913
3391
  * @param selector A string containing a selector expression to match elements against.
3392
+ * @see {@link https://api.jquery.com/closest/#closest-selector}
2914
3393
  */
2915
3394
  closest(selector: string): JQuery;
2916
3395
  /**
@@ -2918,18 +3397,21 @@ interface JQuery {
2918
3397
  *
2919
3398
  * @param selector A string containing a selector expression to match elements against.
2920
3399
  * @param context A DOM element within which a matching element may be found. If no context is passed in then the context of the jQuery set will be used instead.
3400
+ * @see {@link https://api.jquery.com/closest/#closest-selector-context}
2921
3401
  */
2922
3402
  closest(selector: string, context?: Element): JQuery;
2923
3403
  /**
2924
3404
  * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
2925
3405
  *
2926
3406
  * @param obj A jQuery object to match elements against.
3407
+ * @see {@link https://api.jquery.com/closest/#closest-selection}
2927
3408
  */
2928
3409
  closest(obj: JQuery): JQuery;
2929
3410
  /**
2930
3411
  * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
2931
3412
  *
2932
3413
  * @param element An element to match elements against.
3414
+ * @see {@link https://api.jquery.com/closest/#closest-element}
2933
3415
  */
2934
3416
  closest(element: Element): JQuery;
2935
3417
 
@@ -2938,16 +3420,19 @@ interface JQuery {
2938
3420
  *
2939
3421
  * @param selectors An array or string containing a selector expression to match elements against (can also be a jQuery object).
2940
3422
  * @param context A DOM element within which a matching element may be found. If no context is passed in then the context of the jQuery set will be used instead.
3423
+ * @see {@link https://api.jquery.com/closest/#closest-selectors-context}
2941
3424
  */
2942
3425
  closest(selectors: any, context?: Element): any[];
2943
3426
 
2944
3427
  /**
2945
3428
  * Get the children of each element in the set of matched elements, including text and comment nodes.
3429
+ * @see {@link https://api.jquery.com/contents/}
2946
3430
  */
2947
3431
  contents(): JQuery;
2948
3432
 
2949
3433
  /**
2950
3434
  * End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.
3435
+ * @see {@link https://api.jquery.com/end/}
2951
3436
  */
2952
3437
  end(): JQuery;
2953
3438
 
@@ -2955,7 +3440,7 @@ interface JQuery {
2955
3440
  * Reduce the set of matched elements to the one at the specified index.
2956
3441
  *
2957
3442
  * @param index An integer indicating the 0-based position of the element. OR An integer indicating the position of the element, counting backwards from the last element in the set.
2958
- *
3443
+ * @see {@link https://api.jquery.com/eq/}
2959
3444
  */
2960
3445
  eq(index: number): JQuery;
2961
3446
 
@@ -2963,24 +3448,28 @@ interface JQuery {
2963
3448
  * Reduce the set of matched elements to those that match the selector or pass the function's test.
2964
3449
  *
2965
3450
  * @param selector A string containing a selector expression to match the current set of elements against.
3451
+ * @see {@link https://api.jquery.com/filter/#filter-selector}
2966
3452
  */
2967
3453
  filter(selector: string): JQuery;
2968
3454
  /**
2969
3455
  * Reduce the set of matched elements to those that match the selector or pass the function's test.
2970
3456
  *
2971
3457
  * @param func A function used as a test for each element in the set. this is the current DOM element.
3458
+ * @see {@link https://api.jquery.com/filter/#filter-function}
2972
3459
  */
2973
3460
  filter(func: (index: number, element: Element) => any): JQuery;
2974
3461
  /**
2975
3462
  * Reduce the set of matched elements to those that match the selector or pass the function's test.
2976
3463
  *
2977
3464
  * @param element An element to match the current set of elements against.
3465
+ * @see {@link https://api.jquery.com/filter/#filter-elements}
2978
3466
  */
2979
3467
  filter(element: Element): JQuery;
2980
3468
  /**
2981
3469
  * Reduce the set of matched elements to those that match the selector or pass the function's test.
2982
3470
  *
2983
3471
  * @param obj An existing jQuery object to match the current set of elements against.
3472
+ * @see {@link https://api.jquery.com/filter/#filter-selection}
2984
3473
  */
2985
3474
  filter(obj: JQuery): JQuery;
2986
3475
 
@@ -2988,23 +3477,27 @@ interface JQuery {
2988
3477
  * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
2989
3478
  *
2990
3479
  * @param selector A string containing a selector expression to match elements against.
3480
+ * @see {@link https://api.jquery.com/find/#find-selector}
2991
3481
  */
2992
3482
  find(selector: string): JQuery;
2993
3483
  /**
2994
3484
  * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
2995
3485
  *
2996
3486
  * @param element An element to match elements against.
3487
+ * @see {@link https://api.jquery.com/find/#find-element}
2997
3488
  */
2998
3489
  find(element: Element): JQuery;
2999
3490
  /**
3000
3491
  * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
3001
3492
  *
3002
3493
  * @param obj A jQuery object to match elements against.
3494
+ * @see {@link https://api.jquery.com/find/#find-element}
3003
3495
  */
3004
3496
  find(obj: JQuery): JQuery;
3005
3497
 
3006
3498
  /**
3007
3499
  * Reduce the set of matched elements to the first in the set.
3500
+ * @see {@link https://api.jquery.com/first/}
3008
3501
  */
3009
3502
  first(): JQuery;
3010
3503
 
@@ -3012,12 +3505,14 @@ interface JQuery {
3012
3505
  * Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.
3013
3506
  *
3014
3507
  * @param selector A string containing a selector expression to match elements against.
3508
+ * @see {@link https://api.jquery.com/has/#has-selector}
3015
3509
  */
3016
3510
  has(selector: string): JQuery;
3017
3511
  /**
3018
3512
  * Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.
3019
3513
  *
3020
3514
  * @param contained A DOM element to match elements against.
3515
+ * @see {@link https://api.jquery.com/has/#has-contained}
3021
3516
  */
3022
3517
  has(contained: Element): JQuery;
3023
3518
 
@@ -3025,29 +3520,34 @@ interface JQuery {
3025
3520
  * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.
3026
3521
  *
3027
3522
  * @param selector A string containing a selector expression to match elements against.
3523
+ * @see {@link https://api.jquery.com/is/#is-selector}
3028
3524
  */
3029
3525
  is(selector: string): boolean;
3030
3526
  /**
3031
3527
  * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.
3032
3528
  *
3033
3529
  * @param func A function used as a test for the set of elements. It accepts one argument, index, which is the element's index in the jQuery collection.Within the function, this refers to the current DOM element.
3530
+ * @see {@link https://api.jquery.com/is/#is-function}
3034
3531
  */
3035
3532
  is(func: (index: number, element: Element) => boolean): boolean;
3036
3533
  /**
3037
3534
  * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.
3038
3535
  *
3039
3536
  * @param obj An existing jQuery object to match the current set of elements against.
3537
+ * @see {@link https://api.jquery.com/is/#is-selection}
3040
3538
  */
3041
3539
  is(obj: JQuery): boolean;
3042
3540
  /**
3043
3541
  * Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.
3044
3542
  *
3045
3543
  * @param elements One or more elements to match the current set of elements against.
3544
+ * @see {@link https://api.jquery.com/is/#is-elements}
3046
3545
  */
3047
3546
  is(elements: any): boolean;
3048
3547
 
3049
3548
  /**
3050
3549
  * Reduce the set of matched elements to the final one in the set.
3550
+ * @see {@link https://api.jquery.com/last/}
3051
3551
  */
3052
3552
  last(): JQuery;
3053
3553
 
@@ -3055,6 +3555,7 @@ interface JQuery {
3055
3555
  * Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.
3056
3556
  *
3057
3557
  * @param callback A function object that will be invoked for each element in the current set.
3558
+ * @see {@link https://api.jquery.com/map/}
3058
3559
  */
3059
3560
  map(callback: (index: number, domElement: Element) => any): JQuery;
3060
3561
 
@@ -3062,6 +3563,7 @@ interface JQuery {
3062
3563
  * Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector.
3063
3564
  *
3064
3565
  * @param selector A string containing a selector expression to match elements against.
3566
+ * @see {@link https://api.jquery.com/next/}
3065
3567
  */
3066
3568
  next(selector?: string): JQuery;
3067
3569
 
@@ -3069,6 +3571,7 @@ interface JQuery {
3069
3571
  * Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.
3070
3572
  *
3071
3573
  * @param selector A string containing a selector expression to match elements against.
3574
+ * @see {@link https://api.jquery.com/nextAll/}
3072
3575
  */
3073
3576
  nextAll(selector?: string): JQuery;
3074
3577
 
@@ -3077,6 +3580,7 @@ interface JQuery {
3077
3580
  *
3078
3581
  * @param selector A string containing a selector expression to indicate where to stop matching following sibling elements.
3079
3582
  * @param filter A string containing a selector expression to match elements against.
3583
+ * @see {@link https://api.jquery.com/nextUntil/#nextUntil-selector-filter}
3080
3584
  */
3081
3585
  nextUntil(selector?: string, filter?: string): JQuery;
3082
3586
  /**
@@ -3084,6 +3588,7 @@ interface JQuery {
3084
3588
  *
3085
3589
  * @param element A DOM node or jQuery object indicating where to stop matching following sibling elements.
3086
3590
  * @param filter A string containing a selector expression to match elements against.
3591
+ * @see {@link https://api.jquery.com/nextUntil/#nextUntil-element-filter}
3087
3592
  */
3088
3593
  nextUntil(element?: Element, filter?: string): JQuery;
3089
3594
  /**
@@ -3091,6 +3596,7 @@ interface JQuery {
3091
3596
  *
3092
3597
  * @param obj A DOM node or jQuery object indicating where to stop matching following sibling elements.
3093
3598
  * @param filter A string containing a selector expression to match elements against.
3599
+ * @see {@link https://api.jquery.com/nextUntil/#nextUntil-element-filter}
3094
3600
  */
3095
3601
  nextUntil(obj?: JQuery, filter?: string): JQuery;
3096
3602
 
@@ -3098,29 +3604,34 @@ interface JQuery {
3098
3604
  * Remove elements from the set of matched elements.
3099
3605
  *
3100
3606
  * @param selector A string containing a selector expression to match elements against.
3607
+ * @see {@link https://api.jquery.com/not/#not-selector}
3101
3608
  */
3102
3609
  not(selector: string): JQuery;
3103
3610
  /**
3104
3611
  * Remove elements from the set of matched elements.
3105
3612
  *
3106
3613
  * @param func A function used as a test for each element in the set. this is the current DOM element.
3614
+ * @see {@link https://api.jquery.com/not/#not-function}
3107
3615
  */
3108
3616
  not(func: (index: number, element: Element) => boolean): JQuery;
3109
3617
  /**
3110
3618
  * Remove elements from the set of matched elements.
3111
3619
  *
3112
3620
  * @param elements One or more DOM elements to remove from the matched set.
3621
+ * @see {@link https://api.jquery.com/not/#not-selection}
3113
3622
  */
3114
3623
  not(elements: Element|Element[]): JQuery;
3115
3624
  /**
3116
3625
  * Remove elements from the set of matched elements.
3117
3626
  *
3118
3627
  * @param obj An existing jQuery object to match the current set of elements against.
3628
+ * @see {@link https://api.jquery.com/not/#not-selection}
3119
3629
  */
3120
3630
  not(obj: JQuery): JQuery;
3121
3631
 
3122
3632
  /**
3123
3633
  * Get the closest ancestor element that is positioned.
3634
+ * @see {@link https://api.jquery.com/offsetParent/}
3124
3635
  */
3125
3636
  offsetParent(): JQuery;
3126
3637
 
@@ -3128,6 +3639,7 @@ interface JQuery {
3128
3639
  * Get the parent of each element in the current set of matched elements, optionally filtered by a selector.
3129
3640
  *
3130
3641
  * @param selector A string containing a selector expression to match elements against.
3642
+ * @see {@link https://api.jquery.com/parent/}
3131
3643
  */
3132
3644
  parent(selector?: string): JQuery;
3133
3645
 
@@ -3135,6 +3647,7 @@ interface JQuery {
3135
3647
  * Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector.
3136
3648
  *
3137
3649
  * @param selector A string containing a selector expression to match elements against.
3650
+ * @see {@link https://api.jquery.com/parents/}
3138
3651
  */
3139
3652
  parents(selector?: string): JQuery;
3140
3653
 
@@ -3143,6 +3656,7 @@ interface JQuery {
3143
3656
  *
3144
3657
  * @param selector A string containing a selector expression to indicate where to stop matching ancestor elements.
3145
3658
  * @param filter A string containing a selector expression to match elements against.
3659
+ * @see {@link https://api.jquery.com/parentsUntil/#parentsUntil-selector-filter}
3146
3660
  */
3147
3661
  parentsUntil(selector?: string, filter?: string): JQuery;
3148
3662
  /**
@@ -3150,6 +3664,7 @@ interface JQuery {
3150
3664
  *
3151
3665
  * @param element A DOM node or jQuery object indicating where to stop matching ancestor elements.
3152
3666
  * @param filter A string containing a selector expression to match elements against.
3667
+ * @see {@link https://api.jquery.com/parentsUntil/#parentsUntil-element-filter}
3153
3668
  */
3154
3669
  parentsUntil(element?: Element, filter?: string): JQuery;
3155
3670
  /**
@@ -3157,6 +3672,7 @@ interface JQuery {
3157
3672
  *
3158
3673
  * @param obj A DOM node or jQuery object indicating where to stop matching ancestor elements.
3159
3674
  * @param filter A string containing a selector expression to match elements against.
3675
+ * @see {@link https://api.jquery.com/parentsUntil/#parentsUntil-element-filter}
3160
3676
  */
3161
3677
  parentsUntil(obj?: JQuery, filter?: string): JQuery;
3162
3678
 
@@ -3164,6 +3680,7 @@ interface JQuery {
3164
3680
  * Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector.
3165
3681
  *
3166
3682
  * @param selector A string containing a selector expression to match elements against.
3683
+ * @see {@link https://api.jquery.com/prev/}
3167
3684
  */
3168
3685
  prev(selector?: string): JQuery;
3169
3686
 
@@ -3171,6 +3688,7 @@ interface JQuery {
3171
3688
  * Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector.
3172
3689
  *
3173
3690
  * @param selector A string containing a selector expression to match elements against.
3691
+ * @see {@link https://api.jquery.com/prevAll/}
3174
3692
  */
3175
3693
  prevAll(selector?: string): JQuery;
3176
3694
 
@@ -3179,6 +3697,7 @@ interface JQuery {
3179
3697
  *
3180
3698
  * @param selector A string containing a selector expression to indicate where to stop matching preceding sibling elements.
3181
3699
  * @param filter A string containing a selector expression to match elements against.
3700
+ * @see {@link https://api.jquery.com/prevUntil/#prevUntil-selector-filter}
3182
3701
  */
3183
3702
  prevUntil(selector?: string, filter?: string): JQuery;
3184
3703
  /**
@@ -3186,6 +3705,7 @@ interface JQuery {
3186
3705
  *
3187
3706
  * @param element A DOM node or jQuery object indicating where to stop matching preceding sibling elements.
3188
3707
  * @param filter A string containing a selector expression to match elements against.
3708
+ * @see {@link https://api.jquery.com/prevUntil/#prevUntil-element-filter}
3189
3709
  */
3190
3710
  prevUntil(element?: Element, filter?: string): JQuery;
3191
3711
  /**
@@ -3193,6 +3713,7 @@ interface JQuery {
3193
3713
  *
3194
3714
  * @param obj A DOM node or jQuery object indicating where to stop matching preceding sibling elements.
3195
3715
  * @param filter A string containing a selector expression to match elements against.
3716
+ * @see {@link https://api.jquery.com/prevUntil/#prevUntil-element-filter}
3196
3717
  */
3197
3718
  prevUntil(obj?: JQuery, filter?: string): JQuery;
3198
3719
 
@@ -3200,6 +3721,7 @@ interface JQuery {
3200
3721
  * Get the siblings of each element in the set of matched elements, optionally filtered by a selector.
3201
3722
  *
3202
3723
  * @param selector A string containing a selector expression to match elements against.
3724
+ * @see {@link https://api.jquery.com/siblings/}
3203
3725
  */
3204
3726
  siblings(selector?: string): JQuery;
3205
3727
 
@@ -3208,6 +3730,7 @@ interface JQuery {
3208
3730
  *
3209
3731
  * @param start An integer indicating the 0-based position at which the elements begin to be selected. If negative, it indicates an offset from the end of the set.
3210
3732
  * @param end An integer indicating the 0-based position at which the elements stop being selected. If negative, it indicates an offset from the end of the set. If omitted, the range continues until the end of the set.
3733
+ * @see {@link https://api.jquery.com/slice/}
3211
3734
  */
3212
3735
  slice(start: number, end?: number): JQuery;
3213
3736
 
@@ -3215,18 +3738,21 @@ interface JQuery {
3215
3738
  * Show the queue of functions to be executed on the matched elements.
3216
3739
  *
3217
3740
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
3741
+ * @see {@link https://api.jquery.com/queue/#queue-queueName}
3218
3742
  */
3219
3743
  queue(queueName?: string): any[];
3220
3744
  /**
3221
3745
  * Manipulate the queue of functions to be executed, once for each matched element.
3222
3746
  *
3223
3747
  * @param newQueue An array of functions to replace the current queue contents.
3748
+ * @see {@link https://api.jquery.com/queue/#queue-queueName-newQueue}
3224
3749
  */
3225
3750
  queue(newQueue: Function[]): JQuery;
3226
3751
  /**
3227
3752
  * Manipulate the queue of functions to be executed, once for each matched element.
3228
3753
  *
3229
3754
  * @param callback The new function to add to the queue, with a function to call that will dequeue the next item.
3755
+ * @see {@link https://api.jquery.com/queue/#queue-queueName-callback}
3230
3756
  */
3231
3757
  queue(callback: Function): JQuery;
3232
3758
  /**
@@ -3234,6 +3760,7 @@ interface JQuery {
3234
3760
  *
3235
3761
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
3236
3762
  * @param newQueue An array of functions to replace the current queue contents.
3763
+ * @see {@link https://api.jquery.com/queue/#queue-queueName-newQueue}
3237
3764
  */
3238
3765
  queue(queueName: string, newQueue: Function[]): JQuery;
3239
3766
  /**
@@ -3241,6 +3768,7 @@ interface JQuery {
3241
3768
  *
3242
3769
  * @param queueName A string containing the name of the queue. Defaults to fx, the standard effects queue.
3243
3770
  * @param callback The new function to add to the queue, with a function to call that will dequeue the next item.
3771
+ * @see {@link https://api.jquery.com/queue/#queue-queueName-callback}
3244
3772
  */
3245
3773
  queue(queueName: string, callback: Function): JQuery;
3246
3774
  }