0

I have a html page and on GO button i have write redirecting code

window.location.replace(url);

I put this page in iframe and on click on GO button result page should open in the existing page replacing the url of the browser but it is opning in iframe only... I tried <base target="_parent" /> also but no luck

Aquarius24
  • 1,806
  • 6
  • 33
  • 61

2 Answers2

1

window.top.location.href is what you're looking for.

000
  • 26,951
  • 10
  • 71
  • 101
0

Your result page needs to break out of the iframe: http://www.w3schools.com/js/tryit.asp?filename=tryjs_breakout

SteinIP
  • 376
  • 4
  • 5