Possible Duplicate:
Redirect parent window from an iframe action using JavaScript
I have a page with an iframe and in content of this iframe have a redirection on all window, how can I make this?
Tried:
window.location.href = 'logged.html';
I can get if the page is opened in a frame or a up?
if(isiframe) window.top.location.href
--- solution ---
if($("#cboxOverlay", top.document).length > 0)
if($("#cboxOverlay", top.document).css("display") != 'none')
window.top.location.href = '{{ path('portada') }}';