NavigateEvent
Defined in: typedoc-repos/scramjet/src/client/events.ts:56
Navigation event class fired when Scramjet frame navigates to a new proxified URL.
Extends
Section titled “Extends”Event
Properties
Section titled “Properties”AT_TARGET
Section titled “AT_TARGET”
readonly
AT_TARGET:2
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11462
Inherited from
Section titled “Inherited from”Event.AT_TARGET
bubbles
Section titled “bubbles”
readonly
bubbles:boolean
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11353
The bubbles
read-only property of the Event interface indicates whether the event bubbles up through the DOM tree or not.
Inherited from
Section titled “Inherited from”Event.bubbles
BUBBLING_PHASE
Section titled “BUBBLING_PHASE”
readonly
BUBBLING_PHASE:3
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11463
Inherited from
Section titled “Inherited from”Event.BUBBLING_PHASE
cancelable
Section titled “cancelable”
readonly
cancelable:boolean
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11366
The cancelable
read-only property of the Event interface indicates whether the event can be canceled, and therefore prevented as if the event never happened.
Inherited from
Section titled “Inherited from”Event.cancelable
cancelBubble
Section titled “cancelBubble”cancelBubble:
boolean
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11360
The cancelBubble
property of the Event interface is deprecated.
Inherited from
Section titled “Inherited from”Event.cancelBubble
CAPTURING_PHASE
Section titled “CAPTURING_PHASE”
readonly
CAPTURING_PHASE:1
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11461
Inherited from
Section titled “Inherited from”Event.CAPTURING_PHASE
composed
Section titled “composed”
readonly
composed:boolean
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11372
The read-only composed
property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.
Inherited from
Section titled “Inherited from”Event.composed
currentTarget
Section titled “currentTarget”
readonly
currentTarget:EventTarget
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11378
The currentTarget
read-only property of the Event interface identifies the element to which the event handler has been attached.
Inherited from
Section titled “Inherited from”Event.currentTarget
defaultPrevented
Section titled “defaultPrevented”
readonly
defaultPrevented:boolean
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11384
The defaultPrevented
read-only property of the Event interface returns a boolean value indicating whether or not the call to Event.preventDefault() canceled the event.
Inherited from
Section titled “Inherited from”Event.defaultPrevented
eventPhase
Section titled “eventPhase”
readonly
eventPhase:number
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11390
The eventPhase
read-only property of the being evaluated.
Inherited from
Section titled “Inherited from”Event.eventPhase
isTrusted
Section titled “isTrusted”
readonly
isTrusted:boolean
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11396
The isTrusted
read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and false
when the event was dispatched via The only exception is the click
event, which initializes the isTrusted
property to false
in user agents.
Inherited from
Section titled “Inherited from”Event.isTrusted
readonly
NONE:0
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11460
Inherited from
Section titled “Inherited from”Event.NONE
returnValue
Section titled “returnValue”returnValue:
boolean
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11403
The Event property returnValue
indicates whether the default action for this event has been prevented or not.
Inherited from
Section titled “Inherited from”Event.returnValue
srcElement
Section titled “srcElement”
readonly
srcElement:EventTarget
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11410
The deprecated Event.srcElement
is an alias for the Event.target property.
Inherited from
Section titled “Inherited from”Event.srcElement
target
Section titled “target”
readonly
target:EventTarget
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11416
The read-only target
property of the dispatched.
Inherited from
Section titled “Inherited from”Event.target
timeStamp
Section titled “timeStamp”
readonly
timeStamp:number
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11422
The timeStamp
read-only property of the Event interface returns the time (in milliseconds) at which the event was created.
Inherited from
Section titled “Inherited from”Event.timeStamp
type:
string
="navigate"
Defined in: typedoc-repos/scramjet/src/client/events.ts:57
The type
read-only property of the Event interface returns a string containing the event’s type.
Overrides
Section titled “Overrides”Event.type
url:
string
Defined in: typedoc-repos/scramjet/src/client/events.ts:58
Methods
Section titled “Methods”composedPath()
Section titled “composedPath()”Call Signature
Section titled “Call Signature”composedPath():
EventTarget
[]
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11434
The composedPath()
method of the Event interface returns the event’s path which is an array of the objects on which listeners will be invoked.
Returns
Section titled “Returns”EventTarget
[]
Inherited from
Section titled “Inherited from”Event.composedPath
Call Signature
Section titled “Call Signature”composedPath():
EventTarget
[]
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.webworker.d.ts:3892
The composedPath()
method of the Event interface returns the event’s path which is an array of the objects on which listeners will be invoked.
Returns
Section titled “Returns”EventTarget
[]
Inherited from
Section titled “Inherited from”Event.composedPath
initEvent()
Section titled “initEvent()”Call Signature
Section titled “Call Signature”initEvent(
type
,bubbles?
,cancelable?
):void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11441
The Event.initEvent()
method is used to initialize the value of an event created using Document.createEvent().
Parameters
Section titled “Parameters”string
bubbles?
Section titled “bubbles?”boolean
cancelable?
Section titled “cancelable?”boolean
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.initEvent
Call Signature
Section titled “Call Signature”initEvent(
type
,bubbles?
,cancelable?
):void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.webworker.d.ts:3899
The Event.initEvent()
method is used to initialize the value of an event created using Document.createEvent().
Parameters
Section titled “Parameters”string
bubbles?
Section titled “bubbles?”boolean
cancelable?
Section titled “cancelable?”boolean
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.initEvent
preventDefault()
Section titled “preventDefault()”Call Signature
Section titled “Call Signature”preventDefault():
void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11447
The preventDefault()
method of the Event interface tells the user agent that if the event does not get explicitly handled, its default action should not be taken as it normally would be.
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.preventDefault
Call Signature
Section titled “Call Signature”preventDefault():
void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.webworker.d.ts:3905
The preventDefault()
method of the Event interface tells the user agent that if the event does not get explicitly handled, its default action should not be taken as it normally would be.
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.preventDefault
stopImmediatePropagation()
Section titled “stopImmediatePropagation()”Call Signature
Section titled “Call Signature”stopImmediatePropagation():
void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11453
The stopImmediatePropagation()
method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added.
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.stopImmediatePropagation
Call Signature
Section titled “Call Signature”stopImmediatePropagation():
void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.webworker.d.ts:3911
The stopImmediatePropagation()
method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added.
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.stopImmediatePropagation
stopPropagation()
Section titled “stopPropagation()”Call Signature
Section titled “Call Signature”stopPropagation():
void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11459
The stopPropagation()
method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases.
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.stopPropagation
Call Signature
Section titled “Call Signature”stopPropagation():
void
Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.webworker.d.ts:3917
The stopPropagation()
method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases.
Returns
Section titled “Returns”void
Inherited from
Section titled “Inherited from”Event.stopPropagation