Redirect user to their homepage

I was wondering if you can redirect the user to your home page. On the homepage, I mean the URL defined in their browser as the homepage. The one they refer to when they click the browser’s Home button.

I know what Internet Explorer uses <a href="about:home" title"Go to your homepage">Homepage</a>, but I have no idea what other browsers use to do this!

Is it possible?

+5
source share
2 answers

I do not know if you are looking for something like this in this thread:

Submitting a user to the home page of his browser using Javascript

+1
source

Just create a link to return to where the user came from:

<a href="#" onClick="history.go(-1);return true;">Back</a>

Or similar button

<button type="button" onClick="history.go(-1): return true:">I do not agree</button>
+1
source

All Articles