Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

AnimationHook

AnimationHook<TElement>: function
deprecated

​ Deprecated since 1.8. Use `{@link Tween.propHooks jQuery.Tween.propHooks}`.

jQuery.fx.step functions are being replaced by jQuery.Tween.propHooks and may eventually be removed, but are still supported via the default tween propHook.

Type parameters

  • TElement

Type declaration

    • (fx: Tween<TElement>): void
    • Parameters

      Returns void

CSSHook

CSSHook<TElement>: Partial<_CSSHook<TElement>> & object | object

Type parameters

  • TElement

CoordinatesPartial

CoordinatesPartial: Pick<Coordinates, "left"> | Pick<Coordinates, "top"> | object

Duration

Duration: number | "fast" | "slow"

EasingMethod

EasingMethod: function

Type declaration

    • (percent: number): number
    • Parameters

      • percent: number

      Returns number

EventHandler

EventHandler<TCurrentTarget, TData>: EventHandlerBase<TCurrentTarget, TriggeredEvent<TCurrentTarget, TData>>

Type parameters

  • TCurrentTarget

  • TData

EventHandlerBase

EventHandlerBase<TContext, T>: function

Type parameters

  • TContext

  • T

Type declaration

    • (this: TContext, t: T, ...args: any[]): any
    • Parameters

      • this: TContext
      • t: T
      • Rest ...args: any[]

      Returns any

Node

Node: Element | Text | Comment | Document | DocumentFragment

PropHook

PropHook<TElement>: object | object | object
see

``

since

1.8

Type parameters

  • TElement

Queue

Queue<TElement>: object & Array<QueueFunction<TElement>>

Type parameters

  • TElement

QueueFunction

QueueFunction<TElement>: function

Type parameters

  • TElement

Type declaration

    • (this: TElement, next: function): void
    • Parameters

      • this: TElement
      • next: function
          • (): void
          • Returns void

      Returns void

Selector

Selector: string

A selector is used in jQuery to select DOM elements from a DOM document. That document is, in most cases, the DOM document present in all browsers, but can also be an XML document received via Ajax.

SpecialEventHook

SpecialEventHook<TTarget, TData>: object | object | object | object | object | object | object | object | object | object | object | object | object

The jQuery special event hooks are a set of per-event-name functions and properties that allow code to control the behavior of event processing within jQuery. The mechanism is similar to fixHooks in that the special event information is stored in jQuery.event.special.NAME, where NAME is the name of the special event. Event names are case sensitive.

As with fixHooks, the special event hooks design assumes it will be very rare that two unrelated pieces of code want to process the same event name. Special event authors who need to modify events with existing hooks will need to take precautions to avoid introducing unwanted side-effects by clobbering those hooks.

see

``

Type parameters

  • TTarget

  • TData

SpeedSettings

SpeedSettings<TElement>: object | object | object | object

Type parameters

  • TElement

Tweener

Tweener<TElement>: function

A "Tweener" is a function responsible for creating a tween object, and you might want to override these if you want to implement complex values ( like a clip/transform array matrix ) in a single property.

see

``

since

1.8

Type parameters

  • TElement

Type declaration

    • (this: Animation<TElement>, propName: string, finalValue: number): Tween<TElement>
    • Parameters

      • this: Animation<TElement>
      • propName: string
      • finalValue: number

      Returns Tween<TElement>

TypeEventHandler

TypeEventHandler<TDelegateTarget, TData, TCurrentTarget, TTarget, TType>: EventHandlerBase<TCurrentTarget, TypeToTriggeredEventMap<TDelegateTarget, TData, TCurrentTarget, TTarget>[TType]>

Type parameters

  • TDelegateTarget

  • TData

  • TCurrentTarget

  • TTarget

  • TType: keyof TypeToTriggeredEventMap<TDelegateTarget, TData, TCurrentTarget, TTarget>

TypeOrArray

TypeOrArray<T>: T | T[]

Type parameters

  • T

ValHook

ValHook<TElement>: object | object | object

Type parameters

  • TElement

_Falsy

_Falsy: false | null | undefined | 0 | "" | HTMLAllCollection

_TypeEventHandlers

_TypeEventHandlers<TDelegateTarget, TData, TCurrentTarget, TTarget>: object

Type parameters

  • TDelegateTarget

  • TData

  • TCurrentTarget

  • TTarget

Type declaration

htmlString

htmlString: string

A string is designated htmlString in jQuery documentation when it is used to represent one or more DOM elements, typically to be created and inserted in the document. When passed as an argument of the jQuery() function, the string is identified as HTML if it starts with <tag ... >) and is parsed as such until the final > character. Prior to jQuery 1.9, a string was considered to be HTML if it contained <tag ... > anywhere within the string.

Generated using TypeDoc