I am generating an iFrame that following some processing with the frame (from an external site) redirects back to my domain (within the iframe), which should then reload the parent frame. However I've tried multiple ways of calling the parent, but none of them seem to work in safari?
methods use include.
self.parent.location="/";
self.top.location="/";
self.top.location.reload();
all of these just reload the iframe. it feels like it is losing the parent / top reference due to the redirects within the iframe.