On Dec 10, 5:33 pm, aquaone <aqua...@gmail.com> wrote:
> Tangent question:
> 1. If someone was to add an iframe to a page, would cookies be sent to the
> page within the iframe?

AFAIK cookies are stored an a per-domain basis, so if your iframe page
resides in the same domain it has access to the same cookies, and only
then.

If it is in a different domain, then you'll have to communicate via
server requests. If it's all under your control, that shouldn't be a
problem. There's also a technique where the page in the iframe set's
it's window.name property which can be read by the parent frame, but
that can be used only once 'onload'.

- ricardo

Reply via email to