...
Code Block | ||
---|---|---|
| ||
<!DOCTYPE html> <html> <head> <title>Page Title</title> <script src="https://beta-static.ambita.com/infoland-mflex/Infoland.umdjs/index.js"></script> </head> <body> <div<iframe id="infoland" src="https://static.ambita.com/infoland-mflex/iframe.html"></div>iframe> <button id="button" click>Open Infoland</button> <script type="text/javascript"> (() => { Infoland.Mflex.init({ ... }); const button = document.getElementById("button"); button.addEventListener('click', (e) => { Infoland.Mflex.load({ ... }); }); })(); </script> </body> </html> |
...