I want using javascript to see if there is history or not, I mean if the back button is available on the browser or not.
Thanks
|
I want using javascript to see if there is history or not, I mean if the back button is available on the browser or not. Thanks |
|||
|
|
|
The only accurate way would be checking the property:
However, the problem with this is that in most browsers this is considered a security violation and usually just returns undefined.
Is a property that others have suggested...
Most of the time a link is added that calls:
or
and it's just expected that if you can't go back then clicking the link does nothing. |
|||||||
|
|
There is another way to check - check the referrer. The first page usually will have an empty referrer...
|
|||||||||||||||||
|
|
You can't directly check whether the back button is usable. You can look at If that's not good enough, about all you can do is call In fact it's normally a Really Bad Idea to be doing anything with the history. History navigation is for browser chrome, not web pages. Adding “go back” links typically causes more user confusion than it's worth. |
|||||||
|
|
Check if |
|||||||||||
|
|
this seems to do the trick:
Call history.back() and then window.close(). If the browser is able to go back in history it won't be able to get to the next statement. If it's not able to go back, it'll close the window. However, please note that if the page has been reached by typing a url, then firefox wont allow the script to close the window. |
||||
|
|
|
I'm not sure if this works and it is completely untested, but try this:
And somewhere in HTML:
EDIT:What you can also do is to research what browsers support the back function (I think they all do) and use the standard JavaScript browser detection object found, and described thoroughly, on this page. Then you can have 2 different pages: one for the "good browsers" compatible with the back button and one for the "bad browsers" telling them to go update their browser |
|||||||||||
|