0

I am able to redirect inside my canvas application and show different pages with the following links:

window.location.href = "/Create/StartTime?mid=" + mid;

My issue is that inside the browser URL bar we cannot see any change in the address. Is there any way to achieve this?

Marc Loeb
  • 570
  • 9
  • 27

1 Answers1

0

You'll need to redirect the parent of the iframe. check this out:

Redirect parent window from an iframe action

Community
  • 1
  • 1
Simon McLoughlin
  • 8,293
  • 5
  • 32
  • 56
  • thanks a lot - it is written there that it is only possible if the iFrame is in the same domain - obviously this is not the case with a externally hosted fb canvas application. – Marc Loeb Apr 26 '12 at 13:46
  • sorry i only read the question, didn't mention in that what you where doing, didn't look at the tags – Simon McLoughlin Apr 26 '12 at 13:48