I have an HTML page which contains Iframe with canvas, i want to capture the event of canvas finish drawing.
<html>
<head></head>
<body>
<iframe id="myIframe" src="link"/>
</body>
</html>
i tried to use myIframe.onload = () => {}
But it runs before canvas rendring. thanks for Help