org.querki.jquery

JQueryTyped

Related Doc: package jquery

class JQueryTyped extends AnyRef

These are strongly-typed signatures for polymorphic JQuery classes. They each call internal classes in the underlying JQuery facade which are loosely-typed.

You should basically consider this class to be complementary to JQuery, and you should pretty much always import it when trying to work with JQuery objects. It is implicitly converted from JQuery, and provides the strongly-typed facade over the weakly-typed internal facades in that.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JQueryTyped
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JQueryTyped(jq: JQuery)

Value Members

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

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

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

    Definition Classes
    AnyRef → Any
  4. def after(func: ThisFunction1[Element, Int, ElementDesc]): JQuery

  5. def after(func: ThisFunction0[Element, ElementDesc]): JQuery

  6. def after(content: ElementDesc*): JQuery

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

  7. def append(func: ThisFunction2[Element, Int, String, Any]): JQuery

  8. def append(content: ElementDesc*): JQuery

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

  9. def appendTo(target: ElementDesc): JQuery

    Insert every element in the set of matched elements to the end of the target.

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def attr(attributeName: String, func: ThisFunction2[Element, Int, String, AttrVal]): JQuery

  12. def attr(attributeName: String, v: AttrVal): JQuery

    Set an attribute for the set of matched elements.

  13. def attr(attributes: Dictionary[String]): JQuery

  14. def attr(attributeName: String): UndefOr[String]

    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.

    Note that this returns UndefOr -- it is entirely legal for this to return undefined if the attribute is not present, and that causes things to crash if it is not UndefOr.

  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  18. def filter(func: ThisFunction1[Element, Int, Boolean]): JQuery

  19. def filter(func: ThisFunction0[Element, Boolean]): JQuery

  20. def filter(selector: Selector): JQuery

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

  21. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def find(selector: Selector): JQuery

    Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.

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

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

    Definition Classes
    AnyRef → Any
  25. def index(selector: ElementDesc): Int

  26. def index(): Int

    Search for a given element from among the matched elements.

  27. def insertBefore(target: ElementDesc): JQuery

    Insert every element in the set of matched elements before the target.

  28. def is(func: ThisFunction1[Element, Int, Boolean]): Boolean

    Note that this overload doesn't precisely match the jQuery documentation; we elide the redundant Element param, since you have Element as the this parameter.

  29. def is(selector: Selector): Boolean

    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.

  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  32. final def notify(): Unit

    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  34. def prepend(func: ThisFunction2[Element, Int, String, Selector]): JQuery

  35. def prepend(contents: ElementDesc*): JQuery

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

  36. def replaceWith(func: ThisFunction0[Element, ElementDesc]): JQuery

  37. def replaceWith(content: ElementDesc): JQuery

    Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.

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

    Definition Classes
    AnyRef
  39. def toString(): String

    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped