Code: Select all
window.webpage.history.back();webpage is a frame. This line of code is in a frameset defining page. Maybe you can't use history object in other frames? That's all I get. The line of code is inside a function, here it is:
Code: Select all
function go_Back()
{
window.webpage.history.back();
return false;
}Code: Select all
<a onmouseup="window.top.go_Back();"> B </a>All help is appreciated. Thanks