Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What browsers support the window.postMessage call now?

What are all the browsers that support the window.postMessage call now? I am looking for browsers that support it natively, not through an iFrame hack.

like image 368
Jamey McElveen Avatar asked May 17 '11 20:05

Jamey McElveen


People also ask

What is window opener postMessage?

postMessage() The window. postMessage() method safely enables cross-origin communication between Window objects; e.g., between a page and a pop-up that it spawned, or between a page and an iframe embedded within it.

What is the difference between SendMessage and postMessage?

SendMessage: Sends a message and waits until the procedure which is responsible for the message finishes and returns. PostMessage: Sends a message to the message queue and returns immediately.


1 Answers

Can I use cross-document messaging

FF3+, IE8+, Chrome, Safari(5?), Opera10+

like image 145
Raynos Avatar answered Sep 18 '22 13:09

Raynos