I saw this question on redirection iFrames Redirect parent window from an iframe action but the answer addressed redirecting the entire page.
The redirect was using:
window.top.location.href = "http://www.example.com"; 
Is there a way to redirect nested iFrames?
ie.
<browser>
    <iframe src="someSrc">
        <!--iFrame page-->
        <iframe src="nestedSrc"></iframe>
    </iframe>
</browser>
So from the nestedSrc redirect someSrc to another page instead of redirecting the browser page.
 
     
    