Lines Matching refs:on

1530 element becomes the second to last, and so on.
1533 **Note:** This method mutates `array` and is based on
1654 search on a sorted `array`.
1744 search on a sorted `array`.
2385 second elements of the given arrays, and so on.
3601 jQuery(element).on('click', _.before(5, addContactToList));
3678 1. `object` *(Object)*: The object to invoke the method on.
3722 arguments, and so on. The arity of `func` may be specified if `func.length`
3826 Provide `options` to indicate whether `func` should be invoked on the
3834 invoked on the trailing edge of the timeout only if the debounced function
3852 4. `[options.leading=false]` *(boolean)*: Specify invoking on the leading edge of the timeout.
3854 6. `[options.trailing=true]` *(boolean)*: Specify invoking on the trailing edge of the timeout.
3862 jQuery(window).on('resize', _.debounce(calculateLayout, 150));
3865 jQuery(element).on('click', _.debounce(sendMail, 300, {
3873 jQuery(source).on('message', debounced);
3876 jQuery(window).on('popstate', debounced.cancel);
3976 provided, it determines the cache key for storing the result based on the
3982 **Note:** The cache is exposed as the `cache` property on the memoized
4226 provided as the second argument, and so on.
4261 **Note:** This method is based on the
4298 **Note:** This method is based on the
4343 should be invoked on the leading and/or trailing edge of the `wait`
4350 invoked on the trailing edge of the timeout only if the throttled function
4368 4. `[options.leading=true]` *(boolean)*: Specify invoking on the leading edge of the timeout.
4369 5. `[options.trailing=true]` *(boolean)*: Specify invoking on the trailing edge of the timeout.
4377 jQuery(window).on('scroll', _.throttle(updatePosition, 100));
4381 jQuery(element).on('click', throttled);
4384 jQuery(window).on('popstate', throttled.cancel);
4507 **Note:** This method is loosely based on the
5225 **Note:** This method is based on
5291 **Note:** This method is based on
5329 **Note:** This method is loosely based on
5479 **Note:** This method is based on
5525 which rely on core-js.
5792 **Note:** This method is based on
6158 **Note:** This method is loosely based on
6197 **Note:** This method is based on
6956 **Note:** This method mutates `object` and is loosely based on
8540 chain sequences. Methods that operate on and return arrays, collections,
8908 Gets the next value on a wrapped object following the
9313 Pads `string` on the left and right sides if it's shorter than `length`.
9347 Pads `string` on the right side if it's shorter than `length`. Padding
9381 Pads `string` on the left side if it's shorter than `length`. Padding
9485 **Note:** This method is based on
9548 **Note:** This method is based on
9653 For more information on precompiling templates see
9657 For more information on Chrome extension sandboxes see
10138 jQuery(element).on('click', view.click);