I\'m looking for a way to postMessage to a sibling iFrame without any javascript in the parent page. The difficulty I\'m having is trying to get the window object for the ot
You will not be able to do this as an iframe cannot interact with the page it's emedded within (nor anything within that page), unless the parent is under the same domain (which, in your example, it is not). If it could, it would pose XSS security issues as you indicated that you're aware of.
Instead, you could: