Class

io.udash.wrappers.jquery.JQuery

JQueryWrapper

Related Doc: package JQuery

Permalink

implicit class JQueryWrapper extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JQueryWrapper
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JQueryWrapper(jquery: JQuery)

    Permalink

Type Members

  1. class OnCallbackRegistration extends CallbackRegistration

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addClass(function: (Int, String) ⇒ String): JQuery

    Permalink

    Adds the specified class(es) to each element in the set of matched elements.

    Adds the specified class(es) to each element in the set of matched elements.
    See: jQuery Docs

  5. def addClass(function: (Int) ⇒ String): JQuery

    Permalink

    Adds the specified class(es) to each element in the set of matched elements.

    Adds the specified class(es) to each element in the set of matched elements.
    See: jQuery Docs

  6. def addClass(classNames: Seq[String]): JQuery

    Permalink

    Adds the specified class(es) to each element in the set of matched elements.

    Adds the specified class(es) to each element in the set of matched elements.
    See: jQuery Docs

  7. def animate(properties: Map[String, Any], options: AnimationOptions): JQuery

    Permalink

    Perform a custom animation of a set of CSS properties.

    Perform a custom animation of a set of CSS properties.
    See: jQuery Docs

  8. def animate(properties: Map[String, Any], duration: Int = 400, easing: EasingFunction = EasingFunction.swing, callback: (Element) ⇒ Any = (_) => {}): JQuery

    Permalink

    Perform a custom animation of a set of CSS properties.

    Perform a custom animation of a set of CSS properties.
    See: jQuery Docs

  9. def append(function: (Element, Int, String) ⇒ Any): JQuery

    Permalink

    Insert content, specified by the parameter, to the end of each element in the set of matched elements.

    Insert content, specified by the parameter, to the end of each element in the set of matched elements.
    See: jQuery Docs

  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def attr(attributeName: String, function: (Int, String) ⇒ |[|[|[String, Int], Double], Boolean]): JQuery

    Permalink

    Set one or more attributes for the set of matched elements.

    Set one or more attributes for the set of matched elements.
    See: jQuery Docs

  12. def attr(attributes: Map[String, |[|[|[String, Int], Double], Boolean]]): JQuery

    Permalink

    Set one or more attributes for the set of matched elements.

    Set one or more attributes for the set of matched elements.
    See: jQuery Docs

  13. def attr(attributeName: String): Option[String]

    Permalink

    Get the value of an attribute for the first element in the set of matched elements.

    Get the value of an attribute for the first element in the set of matched elements.
    See: jQuery Docs

  14. def before(content: (Int, String) ⇒ |[|[String, Element], JQuery]): JQuery

    Permalink

    Insert content, specified by the parameter, before each element in the set of matched elements.

    Insert content, specified by the parameter, before each element in the set of matched elements.
    See: jQuery Docs

  15. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def css(attributeName: String, attributeFun: (Int, String) ⇒ |[|[|[String, Int], Double], Boolean]): JQuery

    Permalink

    Set one or more CSS properties for the set of matched elements.

    Set one or more CSS properties for the set of matched elements.
    See: jQuery Docs

  17. def css(propertyNames: Map[String, |[|[|[String, Int], Double], Boolean]]): JQuery

    Permalink

    Set one or more CSS properties for the set of matched elements.

    Set one or more CSS properties for the set of matched elements.
    See: jQuery Docs

  18. def data(obj: Map[String, Any]): JQuery

    Permalink

    Store arbitrary data associated with the matched elements.

    Store arbitrary data associated with the matched elements.
    See: jQuery Docs

  19. def data(key: String): Option[Any]

    Permalink

    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.

    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.
    See: jQuery Docs

  20. def each(callback: (Element, Int) ⇒ Any): JQuery

    Permalink

    Iterate over a jQuery object, executing a function for each matched element.

    Iterate over a jQuery object, executing a function for each matched element.
    See: jQuery Docs

  21. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  23. def fadeIn(options: AnimationOptions): JQuery

    Permalink

    Display the matched elements by fading them to opaque.

    Display the matched elements by fading them to opaque.
    See: jQuery Docs

  24. def fadeIn(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Display the matched elements by fading them to opaque.

    Display the matched elements by fading them to opaque.
    See: jQuery Docs

  25. def fadeOut(options: AnimationOptions): JQuery

    Permalink

    Hide the matched elements by fading them to transparent.

    Hide the matched elements by fading them to transparent.
    See: jQuery Docs

  26. def fadeOut(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Hide the matched elements by fading them to transparent.

    Hide the matched elements by fading them to transparent.
    See: jQuery Docs

  27. def fadeTo(duration: Int, opacity: Double, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Adjust the opacity of the matched elements.

    Adjust the opacity of the matched elements.
    See: jQuery Docs

  28. def fadeTo(duration: Int, opacity: Double, callback: (Element) ⇒ Any): JQuery

    Permalink

    Adjust the opacity of the matched elements.

    Adjust the opacity of the matched elements.
    See: jQuery Docs

  29. def fadeToggle(options: AnimationOptions): JQuery

    Permalink

    Display or hide the matched elements by animating their opacity.

    Display or hide the matched elements by animating their opacity.
    See: jQuery Docs

  30. def fadeToggle(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Display or hide the matched elements by animating their opacity.

    Display or hide the matched elements by animating their opacity.
    See: jQuery Docs

  31. def filter(function: (Element, Int, Element) ⇒ Boolean): JQuery

    Permalink

    Reduce the set of matched elements to those that match the selector or pass the function's test.

    Reduce the set of matched elements to those that match the selector or pass the function's test.
    See: jQuery Docs

  32. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  33. def get(): Seq[Element]

    Permalink

    Retrieve the elements matched by the jQuery object.

    Retrieve the elements matched by the jQuery object.
    See: jQuery Docs

  34. def get(index: Int): Option[Element]

    Permalink

    Retrieve one of the elements matched by the jQuery object.

    Retrieve one of the elements matched by the jQuery object.
    See: jQuery Docs

  35. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  36. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  37. def height(function: (Element, Int, Int) ⇒ |[|[String, Int], Double]): JQuery

    Permalink

    Set the CSS height of every matched element.

    Set the CSS height of every matched element.
    See: jQuery Docs

  38. def hide(options: AnimationOptions): JQuery

    Permalink

    Hide the matched elements.

    Hide the matched elements.
    See: jQuery Docs

  39. def hide(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Hide the matched elements.

    Hide the matched elements.
    See: jQuery Docs

  40. def hover(handlerInOut: (Element) ⇒ Any): JQuery

    Permalink

    Bind a single handler to the matched elements, to be executed when the mouse pointer enters or leaves the elements.

    Bind a single handler to the matched elements, to be executed when the mouse pointer enters or leaves the elements.
    See: jQuery Docs

  41. def hover(handlerIn: (Element) ⇒ Any, handlerOut: (Element) ⇒ Any): JQuery

    Permalink

    Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.

    Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.
    See: jQuery Docs

  42. def innerHeight(function: (Element, Int, Double) ⇒ |[|[Int, Double], String]): JQuery

    Permalink

    Set the CSS inner height of each element in the set of matched elements.

    Set the CSS inner height of each element in the set of matched elements.
    See: jQuery Docs

  43. def innerWidth(function: (Element, Int, Double) ⇒ |[|[Int, Double], String]): JQuery

    Permalink

    Set the CSS inner width of each element in the set of matched elements.

    Set the CSS inner width of each element in the set of matched elements.
    See: jQuery Docs

  44. def is(function: (Element, Int, Element) ⇒ Boolean): Boolean

    Permalink

    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.

    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.
    See: jQuery Docs

  45. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  46. def load(url: String, data: Any, callback: (Element, String, String, JQueryXHR) ⇒ Any): JQuery

    Permalink

    Load data from the server and place the returned HTML into the matched element.

    Load data from the server and place the returned HTML into the matched element.
    See: jQuery Docs

  47. def map(callback: (Int, Element) ⇒ Any): JQuery

    Permalink

    Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.

    Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.
    See: jQuery Docs

  48. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  49. def not(function: (Element, Int, Element) ⇒ Boolean): JQuery

    Permalink

    Remove elements from the set of matched elements.

    Remove elements from the set of matched elements.
    See: jQuery Docs

  50. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  51. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  52. def off(event: EventName, callback: JQueryCallback): JQuery

    Permalink

    Remove an event handler.

    Remove an event handler.
    See: jQuery Docs

  53. def offset(coordinates: Offset): JQuery

    Permalink

    Get the current coordinates of the first element in the set of matched elements, relative to the document.

    Get the current coordinates of the first element in the set of matched elements, relative to the document.
    See: jQuery Docs

  54. def offset(): Offset

    Permalink

    Get the current coordinates of the first element in the set of matched elements, relative to the document.

    Get the current coordinates of the first element in the set of matched elements, relative to the document.
    See: jQuery Docs

  55. def on(event: EventName, selector: Selector, data: Any, callback: JQueryCallback): JQuery

    Permalink

    Attach an event handler function for one or more events to the selected elements.

    Attach an event handler function for one or more events to the selected elements.
    See: jQuery Docs

  56. def on(event: EventName, selector: Selector, callback: JQueryCallback): JQuery

    Permalink

    Attach an event handler function for one or more events to the selected elements.

    Attach an event handler function for one or more events to the selected elements.
    See: jQuery Docs

  57. def on(event: EventName, data: Any, callback: JQueryCallback): JQuery

    Permalink

    Attach an event handler function for one or more events to the selected elements.

    Attach an event handler function for one or more events to the selected elements.
    See: jQuery Docs

  58. def on(event: EventName, callback: JQueryCallback): JQuery

    Permalink

    Attach an event handler function for one or more events to the selected elements.

    Attach an event handler function for one or more events to the selected elements.
    See: jQuery Docs

  59. def one(event: EventName, selector: Selector, data: Any, callback: JQueryCallback): JQuery

    Permalink

    Attach a handler to an event for the elements.

    Attach a handler to an event for the elements. The handler is executed at most once per element per event type.
    See: jQuery Docs

  60. def one(event: EventName, selector: Selector, callback: JQueryCallback): JQuery

    Permalink

    Attach a handler to an event for the elements.

    Attach a handler to an event for the elements. The handler is executed at most once per element per event type.
    See: jQuery Docs

  61. def one(event: EventName, data: Any, callback: JQueryCallback): JQuery

    Permalink

    Attach a handler to an event for the elements.

    Attach a handler to an event for the elements. The handler is executed at most once per element per event type.
    See: jQuery Docs

  62. def one(event: EventName, callback: JQueryCallback): JQuery

    Permalink

    Attach a handler to an event for the elements.

    Attach a handler to an event for the elements. The handler is executed at most once per element per event type.
    See: jQuery Docs

  63. def outerHeight(function: (Element, Int, Double) ⇒ Double): JQuery

    Permalink

    Set the CSS outer Height of each element in the set of matched elements.

    Set the CSS outer Height of each element in the set of matched elements.
    See: jQuery Docs

  64. def outerHeight(includeMargin: Boolean = false): Option[Double]

    Permalink

    Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin.

    Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns a number (without "px") representation of the value or undef if called on an empty set of elements.
    See: jQuery Docs

  65. def outerWidth(function: (Element, Int, Double) ⇒ Double): JQuery

    Permalink

    Set the CSS outer width of each element in the set of matched elements.

    Set the CSS outer width of each element in the set of matched elements.
    See: jQuery Docs

  66. def outerWidth(includeMargin: Boolean = false): Option[Double]

    Permalink

    Get the current computed width for the first element in the set of matched elements, including padding and border.

    Get the current computed width for the first element in the set of matched elements, including padding and border.
    See: jQuery Docs

  67. def position(): Position

    Permalink

    Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.

    Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.
    See: jQuery Docs

  68. def prepend(function: (Element, Int, String) ⇒ Any): JQuery

    Permalink

    Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.

    Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
    See: jQuery Docs

  69. def prop(properties: Map[String, Any]): JQuery

    Permalink

    Set one or more properties for the set of matched elements.

    Set one or more properties for the set of matched elements.
    See: jQuery Docs

  70. def prop(propertyName: String, function: (Element, Int, Any) ⇒ Any): JQuery

    Permalink

    Set one or more properties for the set of matched elements.

    Set one or more properties for the set of matched elements.
    See: jQuery Docs

  71. def pushStack(elements: Seq[Any], name: String, arguments: Seq[Any]): JQuery

    Permalink

    Add a collection of DOM elements onto the jQuery stack.

    Add a collection of DOM elements onto the jQuery stack.
    See: jQuery Docs

  72. def pushStack(elements: Seq[Any]): JQuery

    Permalink

    Add a collection of DOM elements onto the jQuery stack.

    Add a collection of DOM elements onto the jQuery stack.
    See: jQuery Docs

  73. def removeClass(function: (Int, String) ⇒ String): JQuery

    Permalink

    Remove a single class, multiple classes, or all classes from each element in the set of matched elements.

    Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
    See: jQuery Docs

  74. def removeClass(classNames: Seq[String]): JQuery

    Permalink

    Remove a single class, multiple classes, or all classes from each element in the set of matched elements.

    Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
    See: jQuery Docs

  75. def removeData(list: String*): JQuery

    Permalink

    Remove a previously-stored piece of data.

    Remove a previously-stored piece of data.
    See: jQuery Docs

  76. def show(options: AnimationOptions): JQuery

    Permalink

    Display the matched elements.

    Display the matched elements.
    See: jQuery Docs

  77. def show(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Display the matched elements.

    Display the matched elements.
    See: jQuery Docs

  78. def slideDown(options: AnimationOptions): JQuery

    Permalink

    Display the matched elements with a sliding motion.

    Display the matched elements with a sliding motion.
    See: jQuery Docs

  79. def slideDown(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Display the matched elements with a sliding motion.

    Display the matched elements with a sliding motion.
    See: jQuery Docs

  80. def slideToggle(options: AnimationOptions): JQuery

    Permalink

    Display or hide the matched elements with a sliding motion.

    Display or hide the matched elements with a sliding motion.
    See: jQuery Docs

  81. def slideToggle(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Display or hide the matched elements with a sliding motion.

    Display or hide the matched elements with a sliding motion.
    See: jQuery Docs

  82. def slideUp(options: AnimationOptions): JQuery

    Permalink

    Hide the matched elements with a sliding motion.

    Hide the matched elements with a sliding motion.
    See: jQuery Docs

  83. def slideUp(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Hide the matched elements with a sliding motion.

    Hide the matched elements with a sliding motion.
    See: jQuery Docs

  84. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  85. def text(function: (Element, Int, String) ⇒ String): JQuery

    Permalink

    Set the content of each element in the set of matched elements to the specified text.

    Set the content of each element in the set of matched elements to the specified text.
    See: jQuery Docs

  86. def toArray: Seq[Element]

    Permalink

    Retrieve all the elements contained in the jQuery set, as an array.

    Retrieve all the elements contained in the jQuery set, as an array.
    See: jQuery Docs

  87. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  88. def toggle(options: AnimationOptions): JQuery

    Permalink

    Display or hide the matched elements.

    Display or hide the matched elements.
    See: jQuery Docs

  89. def toggle(duration: Int, easing: EasingFunction, callback: (Element) ⇒ Any): JQuery

    Permalink

    Display or hide the matched elements.

    Display or hide the matched elements.
    See: jQuery Docs

  90. def toggleClass(function: (Int, String, Boolean) ⇒ String, state: Boolean): JQuery

    Permalink

    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 state argument.

    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 state argument.
    See: jQuery Docs

  91. def toggleClass(function: (Int, String, Boolean) ⇒ String): JQuery

    Permalink

    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 state argument.

    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 state argument.
    See: jQuery Docs

  92. def toggleClass(classNames: Seq[String]): JQuery

    Permalink

    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 state argument.

    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 state argument.
    See: jQuery Docs

  93. def trigger(event: |[EventName, JQueryEvent], extraParams: Seq[Any]): JQuery

    Permalink

    Execute all handlers and behaviors attached to the matched elements for the given event type.

    Execute all handlers and behaviors attached to the matched elements for the given event type.
    See: jQuery Docs

  94. def trigger(event: |[EventName, JQueryEvent], extraParams: Map[String, Any]): JQuery

    Permalink

    Execute all handlers and behaviors attached to the matched elements for the given event type.

    Execute all handlers and behaviors attached to the matched elements for the given event type.
    See: jQuery Docs

  95. def triggerHandler(event: |[EventName, JQueryEvent], extraParams: Seq[Any]): JQuery

    Permalink

    Execute all handlers attached to an element for an event.

    Execute all handlers attached to an element for an event.
    See: jQuery Docs

  96. def triggerHandler(event: |[EventName, JQueryEvent], extraParams: Map[String, Any]): JQuery

    Permalink

    Execute all handlers attached to an element for an event.

    Execute all handlers attached to an element for an event.
    See: jQuery Docs

  97. def value(function: (Element, Int, String) ⇒ String): JQuery

    Permalink

    Set the value of each element in the set of matched elements.

    Set the value of each element in the set of matched elements.
    See: jQuery Docs

  98. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  99. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  100. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  101. def width(function: (Element, Int, Int) ⇒ |[|[String, Int], Double]): JQuery

    Permalink

    Set the CSS width of each element in the set of matched elements.

    Set the CSS width of each element in the set of matched elements.
    See: jQuery Docs

  102. def wrap(function: (Element, Int) ⇒ |[String, JQuery]): JQuery

    Permalink

    Wrap an HTML structure around each element in the set of matched elements.

    Wrap an HTML structure around each element in the set of matched elements.
    See: jQuery Docs

  103. def wrapAll(function: (Element, Int) ⇒ |[String, JQuery]): JQuery

    Permalink

    Wrap an HTML structure around all elements in the set of matched elements.

    Wrap an HTML structure around all elements in the set of matched elements.
    See: jQuery Docs

  104. def wrapInner(function: (Element, Int) ⇒ |[String, JQuery]): JQuery

    Permalink

    Wrap an HTML structure around the content of each element in the set of matched elements.

    Wrap an HTML structure around the content of each element in the set of matched elements.
    See: jQuery Docs

Deprecated Value Members

  1. def blur(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "blur" JavaScript event on an element.

    Bind an event handler to the "blur" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  2. def blur(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "blur" JavaScript event on an element.

    Bind an event handler to the "blur" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  3. def change(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "change" JavaScript event on an element.

    Bind an event handler to the "change" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  4. def change(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "change" JavaScript event on an element.

    Bind an event handler to the "change" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  5. def click(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "click" JavaScript event on an element.

    Bind an event handler to the "click" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  6. def click(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "click" JavaScript event on an element.

    Bind an event handler to the "click" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  7. def contextMenu(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "contextmenu" JavaScript event on an element.

    Bind an event handler to the "contextmenu" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  8. def contextMenu(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "contextmenu" JavaScript event on an element.

    Bind an event handler to the "contextmenu" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  9. def dblClick(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "dblclick" JavaScript event on an element.

    Bind an event handler to the "dblclick" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  10. def dblClick(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "dblclick" JavaScript event on an element.

    Bind an event handler to the "dblclick" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  11. def error(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "error" JavaScript event on an element.

    Bind an event handler to the "error" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.0) Since jQuery 1.8

  12. def error(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "error" JavaScript event on an element.

    Bind an event handler to the "error" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.0) Since jQuery 1.8

  13. def focus(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "focus" JavaScript event on an element.

    Bind an event handler to the "focus" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  14. def focus(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "focus" JavaScript event on an element.

    Bind an event handler to the "focus" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  15. def focusIn(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "focusIn" JavaScript event on an element.

    Bind an event handler to the "focusIn" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  16. def focusIn(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "focusIn" JavaScript event on an element.

    Bind an event handler to the "focusIn" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  17. def focusOut(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "focusOut" JavaScript event on an element.

    Bind an event handler to the "focusOut" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  18. def focusOut(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "focusOut" JavaScript event on an element.

    Bind an event handler to the "focusOut" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  19. def keyDown(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "keydown" JavaScript event on an element.

    Bind an event handler to the "keydown" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  20. def keyDown(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "keydown" JavaScript event on an element.

    Bind an event handler to the "keydown" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  21. def keyPress(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "keypress" JavaScript event on an element.

    Bind an event handler to the "keypress" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  22. def keyPress(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "keypress" JavaScript event on an element.

    Bind an event handler to the "keypress" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  23. def keyUp(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "keyup" JavaScript event on an element.

    Bind an event handler to the "keyup" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  24. def keyUp(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "keyup" JavaScript event on an element.

    Bind an event handler to the "keyup" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  25. def mouseDown(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mousedown" JavaScript event on an element.

    Bind an event handler to the "mousedown" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  26. def mouseDown(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mousedown" JavaScript event on an element.

    Bind an event handler to the "mousedown" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  27. def mouseEnter(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseenter" JavaScript event on an element.

    Bind an event handler to the "mouseenter" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  28. def mouseEnter(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseenter" JavaScript event on an element.

    Bind an event handler to the "mouseenter" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  29. def mouseLeave(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseleave" JavaScript event on an element.

    Bind an event handler to the "mouseleave" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  30. def mouseLeave(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseleave" JavaScript event on an element.

    Bind an event handler to the "mouseleave" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  31. def mouseMove(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mousemove" JavaScript event on an element.

    Bind an event handler to the "mousemove" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  32. def mouseMove(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mousemove" JavaScript event on an element.

    Bind an event handler to the "mousemove" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  33. def mouseOut(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseout" JavaScript event on an element.

    Bind an event handler to the "mouseout" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  34. def mouseOut(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseout" JavaScript event on an element.

    Bind an event handler to the "mouseout" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  35. def mouseOver(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseover" JavaScript event on an element.

    Bind an event handler to the "mouseover" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  36. def mouseOver(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseover" JavaScript event on an element.

    Bind an event handler to the "mouseover" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  37. def mouseUp(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseup" JavaScript event on an element.

    Bind an event handler to the "mouseup" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  38. def mouseUp(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "mouseup" JavaScript event on an element.

    Bind an event handler to the "mouseup" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  39. def ready(callback: (Element) ⇒ Any): JQuery

    Permalink

    Specify a function to execute when the DOM is fully loaded.

    Specify a function to execute when the DOM is fully loaded.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.0) Use jQ(callback) instead.

  40. def resize(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "resize" JavaScript event on an element.

    Bind an event handler to the "resize" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  41. def resize(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "resize" JavaScript event on an element.

    Bind an event handler to the "resize" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  42. def scroll(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "scroll" JavaScript event on an element.

    Bind an event handler to the "scroll" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  43. def scroll(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "scroll" JavaScript event on an element.

    Bind an event handler to the "scroll" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  44. def select(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "select" JavaScript event on an element.

    Bind an event handler to the "select" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  45. def select(callback: JQueryCallback): JQuery

    Permalink

    Bind an event handler to the "select" JavaScript event on an element.

    Bind an event handler to the "select" JavaScript event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  46. def submit(data: Any, callback: JQueryCallback): JQuery

    Permalink

    Trigger submit event on an element.

    Trigger submit event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  47. def submit(callback: JQueryCallback): JQuery

    Permalink

    Trigger submit event on an element.

    Trigger submit event on an element.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

Inherited from AnyRef

Inherited from Any

Ungrouped