I have a unsecure page which opens up a secure (https) page. The secure page needs to update the parent page via a javascript submit() while still remaining the current window. However when I try to do this via javascript I get an "Access Denied" javascript error because the parent page is unsecure.
Any idea of how I can access the parent page, when it isn't secure?
Here is the javascript code that I'm using to perform the submit...
self.opener.parent.frames.item('BODY').document.forms[0].submit();