Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function forceBack() {
var w1 = parent.frames['frame1'];
var w2 = parent.frames['frame2'];
w1.history.go(-1);
w2.history.go(-1);
}
<input type="button" onclick="forceBack();" value="Back" />
Since you're new to web programming here's some advice from an old hand - don't use frames. My first websites used them, I'm sure a lot of peoples' did, but the more you learn the more problems you discover with frame usage (and abusage). There's a good summary of frames issues here:Hello, I am new to web programming. I have a page that has two frames...