object Pseudo

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

Type Members

  1. final case class AttrExists(name: String) extends Single with Product with Serializable

    Selects all elements with a name attribute.

  2. final case class AttrSelector(name: String, value: String, op: String) extends Single with Product with Serializable
  3. trait ChainOps[Out] extends AnyRef

    Trait providing a nice chaining DSL.

  4. final case class Composite extends Pseudo with Product with Serializable
  5. final case class Custom(cssValue: String, pseudoType: PseudoType) extends Single with Product with Serializable
  6. final case class Lang(language: String) extends Single with Product with Serializable

    Selects every <p> element with a lang attribute value starting with "it".

  7. final case class Not(selector: String) extends Single with Product with Serializable

    Selects every element that is not a <p> element.

  8. final case class NthChild(query: NthQuery) extends NthChildBase with Product with Serializable

    Selects every <p> element that is the second child of its parent.

  9. sealed abstract class NthChildBase extends Single
  10. final case class NthLastChild(query: NthQuery) extends NthChildBase with Product with Serializable

    Selects every <p> element that is the second child of its parent, counting from the last child.

  11. final case class NthLastOfType(query: NthQuery) extends NthChildBase with Product with Serializable

    Selects every <p> element that is the second <p> element of its parent, counting from the last child.

  12. final case class NthOfType(query: NthQuery) extends NthChildBase with Product with Serializable

    Selects every <p> element that is the second <p> element of its parent.

  13. type NthQuery = String
  14. type PseudoF = (ChainOps[Pseudo]) ⇒ Pseudo
  15. sealed abstract class Single extends Pseudo

    A single Pseudo instance.

    A single Pseudo instance. Not a composite.

    (Note: Not may have a nested value but is not a composite.

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 Attr(name: String, value: String): AttrSelector

    Selects all elements with a name="value".

  5. def AttrContains(name: String, value: String): AttrSelector

    Selects all elements with a name containing the word value.

  6. def AttrEndsWith(name: String, value: String): AttrSelector

    Selects all elements with a name ends with value.

  7. def AttrStartsWith(name: String, value: String): AttrSelector

    Selects all elements with a name starting with value.

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. implicit val order: Ordering[Single]
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. implicit def univEq: UnivEq[Single]
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  26. object Active extends Single with Product with Serializable

    Selects the active link.

  27. object After extends Single with Product with Serializable

    Insert content after every <p> element.

  28. object Before extends Single with Product with Serializable

    Insert content before every <p> element.

  29. object ChainOps extends ChainOps[Pseudo]
  30. object Checked extends Single with Product with Serializable

    Selects every checked <input> element.

  31. object Disabled extends Single with Product with Serializable

    Selects every disabled <input> element.

  32. object Empty extends Single with Product with Serializable

    Selects every <p> element that has no children.

  33. object Enabled extends Single with Product with Serializable

    Selects every enabled <input> element.

  34. object FirstChild extends Single with Product with Serializable

    Selects every <p> elements that is the first child of its parent.

  35. object FirstLetter extends Single with Product with Serializable

    Selects the first letter of every <p> element.

  36. object FirstLine extends Single with Product with Serializable

    Selects the first line of every <p> element.

  37. object FirstOfType extends Single with Product with Serializable

    Selects every <p> element that is the first <p> element of its parent.

  38. object Focus extends Single with Product with Serializable

    Selects the <input> element that has focus.

  39. object Hover extends Single with Product with Serializable

    Selects links on mouse over.

  40. object InRange extends Single with Product with Serializable

    Selects <input> elements with a value within a specified range.

  41. object Invalid extends Single with Product with Serializable

    Selects all <input> elements with an invalid value.

  42. object LastChild extends Single with Product with Serializable

    Selects every <p> elements that is the last child of its parent.

  43. object LastOfType extends Single with Product with Serializable

    Selects every <p> element that is the last <p> element of its parent.

  44. object Link extends Single with Product with Serializable

    Selects all unvisited link.

  45. object Not extends Serializable
  46. object NthChildBase
  47. object OnlyChild extends Single with Product with Serializable

    Selects every <p> element that is the only child of its parent.

  48. object OnlyOfType extends Single with Product with Serializable

    Selects every <p> element that is the only <p> element of its parent.

  49. object Optional extends Single with Product with Serializable

    Selects <input> elements with no "required" attribute.

  50. object OutOfRange extends Single with Product with Serializable

    Selects <input> elements with a value outside a specified range.

  51. object ReadOnly extends Single with Product with Serializable

    Selects <input> elements with a "readonly" attribute specified.

  52. object ReadWrite extends Single with Product with Serializable

    Selects <input> elements with no "readonly" attribute.

  53. object Required extends Single with Product with Serializable

    Selects <input> elements with a "required" attribute specified.

  54. object Selection extends Single with Product with Serializable

    Selects the portion of an element that is selected by a user .

  55. object Target extends Single with Product with Serializable

    Selects the current active #news element (clicked on a URL containing that anchor name).

  56. object Valid extends Single with Product with Serializable

    Selects all <input> elements with a valid value.

  57. object Visited extends Single with Product with Serializable

    Selects all visited link.

Inherited from AnyRef

Inherited from Any

Ungrouped