I wrote a JavaScript code as below
[INDENT]alert (parent.frame2.location);
parent.frame2.location.href = "file2.htm";
alert (parent.frame2.location);
[/INDENT]
However, this code functions differently in FireFox and IE.
In FireFox the result is:
[INDENT].../file0.htm
.../file0.htm
[/INDENT]In IE the result is:
[INDENT].../file0.htm
.../file2.htm
[/INDENT]
How can I make FireFox have the same result as IE?