As the subject says, I have a page that needs to run differently if the page is loaded by a link or if it is loaded by the back button on the browser. I want to test for this in the Javascript.
Pseudocode:
if (loaded by back button) {
Do this;
}
else if {
Do this instead;
}
Any ideas?
-Carl
Pseudocode:
if (loaded by back button) {
Do this;
}
else if {
Do this instead;
}
Any ideas?
-Carl