onclick page go to homepage without any absolute path
following code will take you to '//www.testtest.com/'
function GoToHomePage()
{
window.location = '/';
}
Try this:
window.location = '/';
Executing this code will send your visitor directly to the root of your website.