postMessage method
Sends a cross-document message.
![]() ![]() |
Syntax
window.postMessage(msg, targetOrigin);Parameters
- msg [in]
-
Type: any
One of the following:
- JavaScript primitive, such as a string
- object
- Array
- PixelArray object
- ImageData object
- Blob
- File
- ArrayBuffer
postMessage cannot send a function as a message.
- targetOrigin [in, optional]
-
Type: Variant
A Variant of type String that specifies a target URI.
Return value
This method does not return a value.
Standards information
- HTML5 Web Messaging, Section 5.3
Remarks
Security Warning: While "*" is a valid value for targetOrigin, set the parameter to the value you expected to receive; otherwise, the security of your message might be compromised. For more information about this security message, see Section 3.1.2 of the HTML5 Web Messaging Specification (Editor's Draft) from the World Wide Web Consortium (W3C).
The postMessage method allows cooperative text exchange between non-trusted modules from different domains embedded within a page. It does so by ensuring a consistent and secure process for text-based data exchange.
When a script invokes this method on a window object, the browser sends an onmessage event to the target document on which the data property has been set to the value passed in msg.
When a target URI is passed into the method, it must have at least a protocol and a host specified. The message will only be sent if the target window has the same protocol and host as the specified target URI.
The postMessage method call does not return until the event listeners of the target document have finished executing.
Examples
If Document A contains a reference to the contentWindow property of Document B, script in Document A can send a message to Document B by calling the postMessage method as follows:
var o = document.getElementsByTagName('iframe')[0]; o.contentWindow.postMessage('Hello World', "*");
The script in Document B can respond to the message by registering the onmessage event handler for incoming messages.
window.addEventListener('onmessage',function(e) { if (e.domain == 'example.com') { if (e.data == 'Hello World') { e.source.postMessage('Hello', "*"); } else { alert(e.data); } } });
See also

