Firefox window.parent.location
Asked Answered
S

1

8

I've a Html page index.htm which has an iframe to page search.htm the search.htm has code like this

function executeSearch() {     
        window.parent.location = "/SearchResults.aspx?t=" + txt_Search.value;
    }

this code executed now from index.htm page and it works great on IE and Chrome, but not FireFox ... is there any work around ?? I tried window.parent.location.href, window.opener.location, window.parent.document.location ... but nothing of those worked.

after searching the web i found some one with similar prob he said that this is a security settings in Firefox ... is this true?? and if so is there any workaround ?

Sukkah answered 24/2, 2010 at 14:38 Comment(1)
Do you get any security error in the console? Can you post code example?Oral
E
0

Try using window.top.location.href instead.

Emmaline answered 5/1, 2013 at 10:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.