Trait

io.scalajs.jquery

JQEvents

Related Doc: package jquery

Permalink

trait JQEvents extends Object

jQuery Events Functions

Annotations
@RawJSType() @native()
See also

http://www.w3schools.com/jquery/jquery_ref_events.asp

Linear Supertypes
Object, Any, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JQEvents
  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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def bind(event: String, data: Any = js.native, function: Function, map: Any = js.native): JQEvents.this.type

    Permalink

    The bind() method attaches one or more event handlers for selected elements, and specifies a function to run when the event occurs.

    The bind() method attaches one or more event handlers for selected elements, and specifies a function to run when the event occurs.

    event

    Required. Specifies one or more events to attach to the elements. Multiple event values are separated by space. Must be a valid event.

    data

    Optional. Specifies additional data to pass along to the function

    function

    Required. Specifies the function to run when the event occurs

    map

    Specifies an event map ({event:function, event:function, ...}) containing one or more events to attach to the elements, and functions to run when the event occurs

  6. def blur(eventData: Any, handler: Function1[Event, Any]): JQEvents.this.type

    Permalink

    Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.

    Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.

    eventData

    An object containing data that will be passed to the event handler.

    handler

    A function to execute each time the event is triggered.

  7. def blur(handler: Function1[Event, Any] = js.native): JQEvents.this.type

    Permalink

    Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.

    Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.

    handler

    A function to execute each time the event is triggered.

  8. def change(callback: Function1[Event, Any] = js.native): JQEvents.this.type

    Permalink

    Bind an event handler to the "change" JavaScript event, or trigger that event on an element.

    Bind an event handler to the "change" JavaScript event, or trigger that event on an element.

    callback

    A function to execute each time the event is triggered.

  9. def click(callback: Function1[Event, Any] = js.native): JQEvents.this.type

    Permalink

    The click event occurs when an element is clicked.

    The click event occurs when an element is clicked. The click() method triggers the click event, or attaches a function to run when a click event occurs.

    callback

    the callback/handler function

  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def die(events: Any): JQEvents.this.type

    Permalink

    A plain object of one or more event types, such as click or keydown and their corresponding functions that are no longer to be executed.

  12. def die(eventType: String, handler: Function1[Event, Any] = js.native): JQEvents.this.type

    Permalink

    Remove event handlers previously attached using .live() from the elements.

    Remove event handlers previously attached using .live() from the elements.

    eventType

    A string containing a JavaScript event type, such as click or keydown.

    handler

    The function that is no longer to be executed.

  13. def die(): JQEvents.this.type

    Permalink

    Remove event handlers previously attached using .live() from the elements.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  22. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  25. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  26. def ready(callback: Function): JQEvents.this.type

    Permalink

    Specify a function to execute when the DOM is fully loaded.

    Specify a function to execute when the DOM is fully loaded.

    callback

    A function to execute after the DOM is ready.

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  30. def valueOf(): Any

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped