I hear HTML5 has window.postMessage(), but it seems to require having a handle on the window (or tab, throughout this question) you're posting the message to. What if I want to broadcast to all open windows? Is this possible?

(What I'm trying to do is warn other windows without any server round-trips when a user does something in one window that affects the others, so that they can update their content. However, while some windows may be opened from existing ones--allowing me to intercept and store references to them--some fresh windows may be opened manually by the user and then a bookmark selected or URL typed in. In this case there doesn't seem to be a way to intercept and store references.)

link|improve this question

Depending on your use-case, Comet (or other similar "HyBi" mecanism) might be a better choice; for example if you want the notification to be cross-browser (i.e. the user has opened IE and Firefox, it makes a change in IE, and expects Firefox to be notified). Also, I don't know exactly how all browsers work (there might be configurable options that changes their default behavior, such as the -no-remote command line argument for Firefox) but even for the same browser, all windows might not be able to communicate without Comet-style/server-driven communications. – Thomas Broyer Jul 9 '09 at 8:43
Thanks, but I already have a server-side fallback...I just wanted it to feel a bit snappier by being more efficient when possible. – Kev Jul 10 '09 at 18:06
feedback

1 Answer

up vote 3 down vote accepted

IMO this is not possible using the postMessage. How about using sessionStorage? Writing to it should generate a storage event that should be propagated to all windows sharing the same session storage.

link|improve this answer
Or cookies (as long as they're in the same domain) – Chetan Sastry Jul 8 '09 at 20:37
1  
cookies could also be a solution, but the advantage of storage is that it generates events when performing operations on it. When using cookies you would have to check every X seconds (setInterval) for new cookies and another problem would be when to remove the cookie. – Rafael Jul 8 '09 at 20:48
I didn't know about session events--MDC's sessionStorage documentation is a little confusion. Thanks for the lead! – Kev Jul 8 '09 at 21:06
Actually, localStorage is the way to go in the end. At least in FF3.5, changing sessionStorage doesn't generate the storage event. – Kev Jul 15 '09 at 17:55
1  
The thing is, as I understand the spec ( w3.org/TR/webstorage/#the-storage-event ) correctly, the event should be fired in both cases (sessionStorage and localStorage). If Firefox doesn't fire the event, IMO this is a bug. – Rafael Jul 15 '09 at 19:31
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.