Link to home
Start Free TrialLog in
Avatar of kousis
kousis

asked on

back option

hi,
i am using 3 frames, back button in one frame , if i press the back button it should go to prevoius page, i 've used history.back but it's not working after going to different website link
but  history.back) is working in local pages if i am linking differnt website it's giving me "page cannot be found"
TIA
Avatar of rumblefiz
rumblefiz

out of curiosity, does history.go(-1) work? the reason i am asking is because i have sometimes had problems with history.back when i know it should be working so i use history.go(-1) and it works. it may work for you even though it doesnt answer your original question.

- rumblefiz
Avatar of kousis

ASKER

I used every method history.back() history.go(-1) history.previous() but none is working.
that's wierd. have you tried specifying the frame?

parent.frameName.history.go(-1);

or maybe:

parent.history.go(-1);

i am not sure on the exact syntax of this as it has been awhile since i used frames and javascript.

- rumblefiz
can you post some code so we can have a look see?

nzjonboy
ASKER CERTIFIED SOLUTION
Avatar of Netminder
Netminder

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