Error: Access is denied
Posted: Tue Sep 05, 2006 10:40 pm
What does this error mean? The line of code that it specified is:
That's all it gives me. Damn IE
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:
The error appears when this button is pressed:
It's obvious on what it is I'm trying to do. I'm not sure if I'm doing it right.
All help is appreciated. Thanks
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