Domanda

please check my website - there's a problem I can't fix. Once you scroll down on the homepage, the #headliner fades out. If you now click another page and after that return back to the homepage, the #headliner is there, again.I know the problem, it's because the #headliner only fades out once the window gets scrolled for 20px.

Is there an action which moves a website always to the top (0px) on load?

È stato utile?

Soluzione

Try this:

window.onload = function()
{
    window.scrollTo(0, 0);
}

It does exactly what you want. When the window loads, the scrollbar will be at the top.

Easy peasy......................................................................................................................

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top