1 2 3 |
top.location.href = 'page.htm'; |
To target the current page or frame you can use in HTML. In Javascript you use:
1 2 3 |
self.location.href = 'page.htm'; |
To target the parent frame you can use in HTML. In Javascript you use:
1 2 3 |
parent.location.href = 'page.htm'; |
To target a specific frame within a frameset you can use in HTML. In Javascript you use:
1 2 3 |
top.frames['thatframe'].location.href = 'page.htm'; |
To target a specific iframe within the current page you can use in HTML. In Javascript you use:
1 2 3 |
self.frames['thatframe'].location.href = 'page.htm'; |