<!-- Inside the iframe -->
<script>
// Create a message to send to the parent window
const message = { action: 'exampleCommand', data: 'example data' };
// Send the message to the parent window
window.parent.postMessage(message, '*'); // The '*' wildcard allows any origin. Use specific origin for security.
</script>
|