Search.../

type

Gets the type of event that was triggered.

Type:

stringRead Only

Was this helpful?

Get the type of the event

Copy Code
1$w("#myElement").onViewChange((event) => {
2 let eventType = event.type;
3});