Skip to content

NavigateEvent

Defined in: typedoc-repos/scramjet/src/client/events.ts:56

Navigation event class fired when Scramjet frame navigates to a new proxified URL.

  • Event

readonly AT_TARGET: 2

Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11462

Event.AT_TARGET


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.

MDN Reference

Event.bubbles


readonly BUBBLING_PHASE: 3

Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11463

Event.BUBBLING_PHASE


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.

MDN Reference

Event.cancelable


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.

Event.cancelBubble


readonly CAPTURING_PHASE: 1

Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11461

Event.CAPTURING_PHASE


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.

MDN Reference

Event.composed


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.

MDN Reference

Event.currentTarget


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.

MDN Reference

Event.defaultPrevented


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.

MDN Reference

Event.eventPhase


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.

MDN Reference

Event.isTrusted


readonly NONE: 0

Defined in: node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.dom.d.ts:11460

Event.NONE


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.

Event.returnValue


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.

Event.srcElement


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.

MDN Reference

Event.target


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.

MDN Reference

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.

MDN Reference

Event.type


url: string

Defined in: typedoc-repos/scramjet/src/client/events.ts:58

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.

MDN Reference

EventTarget[]

Event.composedPath

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.

MDN Reference

EventTarget[]

Event.composedPath


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().

string

boolean

boolean

void

Event.initEvent

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().

string

boolean

boolean

void

Event.initEvent


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.

MDN Reference

void

Event.preventDefault

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.

MDN Reference

void

Event.preventDefault


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.

MDN Reference

void

Event.stopImmediatePropagation

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.

MDN Reference

void

Event.stopImmediatePropagation


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.

MDN Reference

void

Event.stopPropagation

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.

MDN Reference

void

Event.stopPropagation