The home() method simulates the user clicking the Home button on the browser.
It takes the browser to the user's specified home page.
<html> <body> <form> <h3>Home James!</h3> <input type=BUTTON value="Home" onClick="window.home()"> </form> </body> </html>