Assume for a second I have a website called www.website.com. Then I have an IFrame on that page that loads www.website2.com. Then within that is another iframe that loads www.website3.com. SO at this point we have an Iframe 2-3 levels deep. Assume that within websit3 we have some JavaScript code that calls, and does some stuff with "document.domain". Which domain out of these will we receive back from that call. Will it report the document.domain as website3, or will it be website.com?
Thanks!