Triggering events in Wized from Webflow

Trying to detect and then trigger wized from webflow using the window.wized global variable but cannot get the window.wized variable to be detected either on load, on action, or in a timeout loop for detection.

Sending data from wized to webflow to interact with an embedded 3rd party package and when complete I need webflow to trigger wized and send data back into the wized environment.

Hello @charles1

Welcome to the Wized forum.

For you to check if Wized is initialized you only need this code:

window.Wized = window.Wized || [];
window.Wized.push((Wized) => {
  // some code action here
});

You can get Wized data from the callback