Trait/Object

org.querki.jquery

JQueryEventObject

Related Docs: object JQueryEventObject | package jquery

Permalink

trait JQueryEventObject extends Event

The facade over an event from JQuery.

Annotations
@RawJSType() @native()
Linear Supertypes
Event, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JQueryEventObject
  2. Event
  3. Object
  4. Any
  5. AnyRef
  6. 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 altKey: UndefOr[Boolean]

    Permalink

    Is the alt key pressed? Only defined on certain events.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def bubbles: Boolean

    Permalink
    Definition Classes
    Event
  7. def cancelBubble: Boolean

    Permalink
    Definition Classes
    Event
  8. def cancelable: Boolean

    Permalink
    Definition Classes
    Event
  9. def clientX: UndefOr[Int]

    Permalink

    Provides the horizontal coordinate within the application's client area at which the event occurred (as opposed to the coordinates within the page).

    Provides the horizontal coordinate within the application's client area at which the event occurred (as opposed to the coordinates within the page).

    Only defined on certain events.

  10. def clientY: UndefOr[Int]

    Permalink

    Provides the vertical coordinate within the application's client area at which the event occurred (as opposed to the coordinates within the page).

    Provides the vertical coordinate within the application's client area at which the event occurred (as opposed to the coordinates within the page).

    Only defined on certain events.

  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def ctrlKey: UndefOr[Boolean]

    Permalink

    Is the ctrl key pressed? Only defined on certain events.

  13. def currentTarget: EventTarget

    Permalink
    Definition Classes
    Event
  14. def data: Any

    Permalink

    An optional object of data passed to an event method when the current executing handler is bound.

  15. def defaultPrevented: Boolean

    Permalink
    Definition Classes
    Event
  16. def delegateTarget: Element

    Permalink

    The element where the currently-called jQuery event handler was attached.

  17. def detail: Any

    Permalink

    Returns additional numerical information about the event, depending on the type of event.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def eventPhase: Int

    Permalink
    Definition Classes
    Event
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. def hasOwnProperty(v: String): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. def initEvent(eventTypeArg: String, canBubbleArg: Boolean, cancelableArg: Boolean): Unit

    Permalink
    Definition Classes
    Event
  26. def isDefaultPrevented(): Boolean

    Permalink

    Returns whether event.preventDefault() was ever called on this event object.

  27. def isImmediatePropagationStopped(): Boolean

    Permalink

    Returns whether event.stopImmediatePropagation() was ever called on this event object.

  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. def isPropagationStopped(): Boolean

    Permalink

    Returns whether event.stopPropagation() was ever called on this event object.

  30. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  31. def isTrusted: Boolean

    Permalink
    Definition Classes
    Event
  32. def metaKey: Boolean

    Permalink

    Indicates whether the META key was pressed when the event fired.

  33. def namespace: String

    Permalink

    The namespace specified when the event was triggered.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  37. def offsetX: UndefOr[Int]

    Permalink

    Provides the offset in the X coordinate of the mouse pointer between that event and the padding edge of the target node.

  38. def offsetY: UndefOr[Int]

    Permalink

    Provides the offset in the Y coordinate of the mouse pointer between that event and the padding edge of the target node.

  39. def pageX: Int

    Permalink

    The mouse position relative to the left edge of the document.

  40. def pageY: Int

    Permalink

    The mouse position relative to the top edge of the document.

  41. def preventDefault(): Unit

    Permalink

    If this method is called, the default action of the event will not be triggered.

    If this method is called, the default action of the event will not be triggered.

    Definition Classes
    JQueryEventObject → Event
  42. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  43. def relatedTarget: Element

    Permalink

    The other DOM element involved in the event, if any.

  44. def result: UndefOr[Any]

    Permalink

    The last value returned by an event handler that was triggered by this event, unless the value was undefined.

  45. def screenX: UndefOr[Int]

    Permalink

    Provides the horizontal coordinate of the mouse pointer in global (screen) coordinates.

    Provides the horizontal coordinate of the mouse pointer in global (screen) coordinates. Only defined on certain events.

  46. def screenY: UndefOr[Int]

    Permalink

    Provides the vertical coordinate of the mouse pointer in global (screen) coordinates.

    Provides the vertical coordinate of the mouse pointer in global (screen) coordinates. Only defined on certain events.

  47. def shiftKey: UndefOr[Boolean]

    Permalink

    Is the shift key pressed? Only defined on certain events.

  48. def srcElement: Element

    Permalink
    Definition Classes
    Event
  49. def stopImmediatePropagation(): Unit

    Permalink

    Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree.

    Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree.

    Definition Classes
    JQueryEventObject → Event
  50. def stopPropagation(): Unit

    Permalink

    Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.

    Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.

    Definition Classes
    JQueryEventObject → Event
  51. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  52. def target: EventTarget

    Permalink
    Definition Classes
    Event
  53. def timeStamp: Double

    Permalink
    Definition Classes
    Event
  54. def toLocaleString(): String

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

    Permalink
    Definition Classes
    AnyRef → Any
  56. def type: String

    Permalink
    Definition Classes
    Event
  57. def valueOf(): Any

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. def which: Int

    Permalink

    For key or mouse events, this property indicates the specific key or button that was pressed.

Inherited from Event

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped