
Perhaps one of our Helpful Links can help you find what you’re looking for. You can also go back or head over to our home page to chose a new direction.
window.goBack = function (e) {
var defaultLocation = "http://www.mysite.com";
var oldHash = window.location.hash;
history.back(); // Try to go back
var newHash = window.location.hash;
if (newHash === oldHash && (typeof(document.referrer) !== "string" || document.referrer === "")) {
window.setTimeout(function () {
// Redirect to default location
window.location.href = defaultLocation;
}, 1000);
}
if (e) {
if(e.preventDefault) e.preventDefault();
if (e.preventPropagation) e.preventPropagation();
}
return false; // stop event propagation and browser default event
}