I have a website (e.g. www.foo.com
) and redirect to another (e.g. www.bar.com
) via window.location
. Unfortunately the website runs in fullscreen-mode (so no address bar available) and the user interacts with it by touch inputs (no keyboard, no mouse).
Is it somehow possible to go back from www.bar.com
to www.foo.com
? Does jQuery do the trick?
UPDATE 1:
My problem is, that I dont have any access to www.bar.com
.
history.back();
works fine, but I cannot just add another button to the
foreign website, can I?
To be more exact:
I refer from my website to www.google.com
. How can I go back from www.google.com
to my website?
If you advise me to use history.back()
in the other website (e.g. here), please tell me how
I am very thankful