Re: Inter-frame communication

2010-04-08 Thread Jon Vaughan
I was looking through this because we are also looking at options for multi-module / portal style app. The thing about postMessage is that it is only supported in FF3, Safari 4, IE8 etc. The JQuery version falls back to a document.location.hash version for other browsers, which ends up in your

Re: Inter-frame communication

2010-03-21 Thread Fabiano
On Mar 21, 12:08 am, Olivier Monaco olivier.mon...@free.fr wrote: Hi, I'm working on a front with a global portal as a placeholder for applications. Each application is an independent GWT module opened in an iframe. The portal and all applications can talk one to each other. Each application

Re: Inter-frame communication

2010-03-20 Thread Olivier Monaco
, sort of simplified, gui-less gadgets). It seems like the safest way to this is to use iframes and inter-frame communication to limit what the third- party code can do (to some extent). So now I need to be able to post events to the gadget-frames and receive responses (basically RPC

Re: Inter-frame communication

2010-03-19 Thread Pondmouse
PM, jjh j...@42quarks.com wrote: Hi, I am wanting allow extensions to my website (essentially third-party javascript code that can provide response to certain events, sort of simplified, gui-less gadgets). It seems like the safest way to this is to use iframes and inter-frame communication

Re: Inter-frame communication

2010-03-19 Thread Jonathan Hunt
website (essentially third-party javascript code that can provide response to certain events, sort of simplified, gui-less gadgets). It seems like the safest way to this is to use iframes and inter-frame communication to limit what the third- party code can do (to some extent). So now I

Inter-frame communication

2010-03-18 Thread jjh
Hi, I am wanting allow extensions to my website (essentially third-party javascript code that can provide response to certain events, sort of simplified, gui-less gadgets). It seems like the safest way to this is to use iframes and inter-frame communication to limit what the third- party code can

Re: Inter-frame communication

2010-03-18 Thread Sudeep S
-party javascript code that can provide response to certain events, sort of simplified, gui-less gadgets). It seems like the safest way to this is to use iframes and inter-frame communication to limit what the third- party code can do (to some extent). So now I need to be able to post events