Link to home
Start Free TrialLog in
Avatar of galneweinhaw
galneweinhaw

asked on

auto-forward to another page from within a frame

Hi,

what HTML can I use to auto-forward a person to another page from within a frame.

currently I am using:
<meta http-equiv="refresh" content="0; url=association/home.html">

but this just opens the page within the frame...which I don't want.
Avatar of superm401
superm401

<script type="text/javascript">
window.location="association/home.html";
</SCRIPT>
ASKER CERTIFIED SOLUTION
Avatar of GwynforWeb
GwynforWeb
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Window doesn't work?
I checked, and you are correct that it does not.  One would think that window.location would cause the window's location to be changed.  However, such logic apparently escaped the developer's minds.