In your frames page,
1 2 3 4 5 6 |
<frameset cols="50%, 50%"> <frame name="menu" src="frame1.html"> <frame name="mainpage" src="frame2.html"> </frameset> |
if this was in the menu: –
1 2 3 |
<input type="button" name="test" value="Refresh" onclick="parent.mainpage.location.reload()"> |
It would update/refresh the menu page.