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 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

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

  8. 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

  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. 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

  11. 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

  12. 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

  13. 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

  14. 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

  15. 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

  16. 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

  17. 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

  18. 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

  19. 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

  20. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. 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

  22. 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

  23. 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

  24. 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

  25. 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

  26. 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

  27. 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

  28. 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

  29. 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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  32. 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

  33. 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

  34. 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

  35. 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

  36. 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

  37. 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

  38. 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

  39. 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

  40. 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

  41. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  42. 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

  43. 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

  44. 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

  45. 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

  46. 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

  47. 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

  48. def get(): Seq[Element]

    Permalink

    Retrieve the elements matched by the jQuery object.

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

  49. 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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  52. 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

  53. def hide(options: AnimationOptions): JQuery

    Permalink

    Hide the matched elements.

    Hide the matched elements.
    See: jQuery Docs

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

    Permalink

    Hide the matched elements.

    Hide the matched elements.
    See: jQuery Docs

  55. 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

  56. 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

  57. 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

  58. 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

  59. 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

  60. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  61. 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

  62. 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

  63. 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

  64. 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

  65. 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

  66. 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

  67. 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

  68. 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

  69. 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

  70. 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

  71. 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

  72. 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

  73. 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

  74. 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

  75. 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

  76. 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

  77. 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

  78. 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

  79. 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

  80. 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

  81. 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

  82. 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

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

    Permalink
    Definition Classes
    AnyRef
  84. 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

  85. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  87. def off(event: String, callback: JQueryCallback): JQuery

    Permalink

    Remove an event handler.

    Remove an event handler.
    See: jQuery Docs

  88. 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

  89. 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

  90. def on(event: String, selector: String, 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

  91. def on(event: String, selector: String, 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

  92. def on(event: String, 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

  93. def on(event: String, 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

  94. def one(event: String, selector: String, 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

  95. def one(event: String, selector: String, 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

  96. def one(event: String, 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

  97. def one(event: String, 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

  98. 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

  99. 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

  100. 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

  101. 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

  102. 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

  103. 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

  104. 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

  105. 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

  106. 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

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

    Permalink

    Remove a previously-stored piece of data.

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

  108. 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

  109. 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

  110. 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

  111. 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

  112. 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

  113. 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

  114. def show(options: AnimationOptions): JQuery

    Permalink

    Display the matched elements.

    Display the matched elements.
    See: jQuery Docs

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

    Permalink

    Display the matched elements.

    Display the matched elements.
    See: jQuery Docs

  116. 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

  117. 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

  118. 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

  119. 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

  120. 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

  121. 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

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

    Permalink

    Trigger submit event on an element.

    Trigger submit event on an element.
    See: jQuery Docs

  123. def submit(callback: JQueryCallback): JQuery

    Permalink

    Trigger submit event on an element.

    Trigger submit event on an element.
    See: jQuery Docs

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

    Permalink
    Definition Classes
    AnyRef
  125. 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

  126. 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

  127. def toString(): String

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

    Permalink

    Display or hide the matched elements.

    Display or hide the matched elements.
    See: jQuery Docs

  129. 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

  130. 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

  131. 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

  132. def trigger(event: |[String, 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

  133. def trigger(event: |[String, 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

  134. def triggerHandler(event: |[String, 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

  135. def triggerHandler(event: |[String, 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

  136. 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

  137. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  140. 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

  141. 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

  142. 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

  143. 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 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

  2. 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

  3. 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.

Inherited from AnyRef

Inherited from Any

Ungrouped