Not work p5.js in Elementor external window (iframe)

Problem with iframe Elementor in Frontend editor, library not find element, when i create canvas. Any idea? Thanks!

function setup() {

const canvasAudio = createCanvas(windowWidth, windowHeight);
canvasAudio.parent('audio_visualizers');

if (audioButton == true) {

    toggleBtn = createButton("play");

    toggleBtn.addClass("toggle-btn");

    toggleBtn.parent('audio_visualizers');
    
    toggleBtn.mousePressed(toggleAudio);

} else {
    audio.loop()
}

fft = new p5.FFT();

}

enter image description here

In Elementor , DOM elements are created in an external window (iframe).