haXe API Documentation
Back
|
Index
extern
class
js.html.CustomEvent
extends
Event
Available in js
The DOM
CustomEvent
are events initialized by an application for any purpose. It's represented by the
nsIDOMCustomEvent
interface, which extends the
nsIDOMEvent
interface.
Documentation for this class was provided by
MDN
.
var
detail(default,null) :
Dynamic
The data passed when initializing the event.
function
new(type :
String
, ?canBubble :
Bool
, ?cancelable :
Bool
) :
Void
function
initCustomEvent(typeArg :
String
, canBubbleArg :
Bool
, cancelableArg :
Bool
, detailArg :
Dynamic
) :
Void
Back
|
Index