Trait/Object

io.udash.wrappers.jquery

JQueryStatic

Related Docs: object JQueryStatic | package jquery

Permalink

trait JQueryStatic extends Object

Annotations
@RawJSType() @native()
Linear Supertypes
Object, Any, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JQueryStatic
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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 ajax(url: String, settings: JQueryAjaxSettings = js.native): JQueryXHR

    Permalink

    Perform an asynchronous HTTP (Ajax) request.

    Perform an asynchronous HTTP (Ajax) request.
    See: jQuery Docs

  5. def ajax(settings: JQueryAjaxSettings): JQueryXHR

    Permalink

    Perform an asynchronous HTTP (Ajax) request.

    Perform an asynchronous HTTP (Ajax) request.
    See: jQuery Docs

  6. def apply(html: String, attrs: Any): JQuery

    Permalink

    Creates DOM elements on the fly from the provided string of raw HTML.

    Creates DOM elements on the fly from the provided string of raw HTML.
    See: jQuery Docs

  7. def apply(html: String, document: Document = js.native): JQuery

    Permalink

    Creates DOM elements on the fly from the provided string of raw HTML.

    Creates DOM elements on the fly from the provided string of raw HTML.
    See: jQuery Docs

  8. def apply(callback: Function0[Any]): JQuery

    Permalink

    Binds a function to be executed when the DOM has finished loading.

    Binds a function to be executed when the DOM has finished loading.
    See: jQuery Docs

  9. def apply(jq: JQuery): JQuery

    Permalink

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
    See: jQuery Docs

  10. def apply(object: Any): JQuery

    Permalink

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
    See: jQuery Docs

  11. def apply(element: Element): JQuery

    Permalink

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
    See: jQuery Docs

  12. def apply(selector: Selector): JQuery

    Permalink

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
    See: jQuery Docs

  13. def apply(selector: Selector, context: |[Element, JQuery]): JQuery

    Permalink

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
    See: jQuery Docs

  14. def apply(): JQuery

    Permalink

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.

    Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
    See: jQuery Docs

  15. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  16. def callbacks[FunType <: Function1[ArgType, Any], ArgType](flags: String = js.native): JQueryCallbacks[FunType, ArgType]

    Permalink

    A multi-purpose callbacks list object that provides a powerful way to manage callback lists.

    A multi-purpose callbacks list object that provides a powerful way to manage callback lists.
    See: jQuery Docs

    Annotations
    @JSName( "Callbacks" )
  17. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. def contains(container: Element, contained: Element): Boolean

    Permalink

    Check to see if a DOM element is a descendant of another DOM element.

    Check to see if a DOM element is a descendant of another DOM element.
    See: jQuery Docs

  19. def data(element: Element, key: String, value: Any): Any

    Permalink

    Store arbitrary data associated with the specified element.

    Store arbitrary data associated with the specified element. Returns the value that was set.
    See: jQuery Docs

  20. def deferred[FunType <: Function1[ArgType, Any], ArgType](beforeStart: JQueryDeferred[_, _] = js.native): JQueryDeferred[FunType, ArgType]

    Permalink

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

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

    Annotations
    @JSName( "Deferred" )
  21. def dequeue(element: Element, queueName: String): Unit

    Permalink

    Execute the next function on the queue for the matched element.

    Execute the next function on the queue for the matched element.
    See: jQuery Docs

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def escapeSelector(index: Int): JQuery

    Permalink

    Escapes any character that has a special meaning in a CSS selector.

    Escapes any character that has a special meaning in a CSS selector.
    See: jQuery Docs

  25. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def get(settings: JQueryAjaxSettings): Unit

    Permalink

    Load data from the server using a HTTP GET request.

    Load data from the server using a HTTP GET request.
    See: jQuery Docs

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

    Permalink
    Definition Classes
    AnyRef → Any
  28. def globalEval(code: String): Unit

    Permalink

    Execute some JavaScript code globally.

    Execute some JavaScript code globally.
    See: jQuery Docs

  29. def hasData(element: Element): Boolean

    Permalink

    Determine whether an element has any jQuery data associated with it.

    Determine whether an element has any jQuery data associated with it.
    See: jQuery Docs

  30. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  31. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  32. def isEmptyObject[T](el: Any): Boolean

    Permalink

    Check to see if an object is empty (contains no enumerable properties).

    Check to see if an object is empty (contains no enumerable properties).
    See: jQuery Docs

  33. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  34. def isPlainObject[T](el: Any): Boolean

    Permalink

    Check to see if an object is a plain object (created using "{}" or "new Object").

    Check to see if an object is a plain object (created using "{}" or "new Object").
    See: jQuery Docs

  35. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  36. def isXMLDoc[T](el: Any): Boolean

    Permalink

    Check to see if a DOM node is within an XML document (or is an XML document).

    Check to see if a DOM node is within an XML document (or is an XML document).
    See: jQuery Docs

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

    Permalink
    Definition Classes
    AnyRef
  38. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  40. def param(obj: |[|[Array[Any], Object], JQuery], traditional: Boolean = js.native): String

    Permalink

    Create a serialized representation of an array, a plain object, or a jQuery object suitable for use in a URL query string or Ajax request.

    Create a serialized representation of an array, a plain object, or a jQuery object suitable for use in a URL query string or Ajax request. In case a jQuery object is passed, it should contain input elements with name/value properties.
    See: jQuery Docs

  41. def parseHTML(data: String, context: Element = js.native, keepScripts: Boolean = js.native): Array[Element]

    Permalink

    Parses a string into an array of DOM nodes.

    Parses a string into an array of DOM nodes.
    See: jQuery Docs

  42. def parseXML(xml: String): Dynamic

    Permalink

    Parses a string into an XML document.

    Parses a string into an XML document.
    See: jQuery Docs

  43. def post(url: String, data: Any = js.native, successCallback: Function3[Any, String, JQueryXHR, Any] = js.native, dataType: String = js.native): Dynamic

    Permalink

    Load data from the server using a HTTP POST request.

    Load data from the server using a HTTP POST request.
    See: jQuery Docs

  44. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  46. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  47. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  48. def uniqueSort[T](array: Array[T]): Array[T]

    Permalink

    Sorts an array of DOM elements, in place, with the duplicates removed.

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

  49. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  50. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. def when[FunType <: Function1[ArgType, Any], ArgType](deferred: JQueryDeferred[FunType, ArgType]*): JQueryPromise[FunType, ArgType]

    Permalink

    Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.

    Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.
    See: jQuery Docs

Deprecated Value Members

  1. def holdReady(hold: Boolean): Unit

    Permalink

    Determine whether an element has any jQuery data associated with it.

    Determine whether an element has any jQuery data associated with it.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.0) Since jQuery 3.2.0

  2. def isArray[T](el: Any): Boolean

    Permalink

    Determine whether the argument is an array.

    Determine whether the argument is an array.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.0) Since jQuery 3.2.0

  3. def isFunction[T](el: Any): Boolean

    Permalink

    Determine if the argument passed is a JavaScript function object.

    Determine if the argument passed is a JavaScript function object.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  4. def isNumeric[T](el: Any): Boolean

    Permalink

    Determines whether its argument is a number.

    Determines whether its argument is a number.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  5. def isWindow[T](el: Any): Boolean

    Permalink

    Determine whether the argument is a window.

    Determine whether the argument is a window.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.0) Since jQuery 3.3.0

  6. def parseJSON(json: String): Any

    Permalink

    Takes a well-formed JSON string and returns the resulting JavaScript value.

    Takes a well-formed JSON string and returns the resulting JavaScript value.
    See: jQuery Docs

    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.0) Since all the browsers supported by jQuery 3.0 support the native JSON.parse() method, we are deprecating jQuery.parseJSON().

  7. def unique[T](array: Array[T]): Array[T]

    Permalink

    Sorts an array of DOM elements, in place, with the duplicates removed.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 1.1.0) The jQuery.unique() method has been renamed to jQuery.uniqueSort() to make its behavior easier to understand.

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped