Skip to content
Advertisement

How to preload an ENTIRE web page

How can you preload an entire web page using JavaScript so that I can get that page cached in the users browser?

I know how to preload images with JS but what I would like to do is preload the entire page.

Use case: On my website, I have a google maps page with a lot of other content (images, css, JS) and it takes a long time (about 10 seconds) to load from a non-cached browser.

It’s a subpage to my home page and users typically visit this page. So what I want to do is preload the entire page with all of the loaded content (images, JS) as much as possible so that it’s cached in the users browser so that when they come to that page – it loads up much quicker. Loading the page from a cached browser cuts the time from around 10 second to 2 second.

Thanks in advance for any help.

Advertisement

Answer

Create an invisible or very small <iframe src="second_page.html"> on the main page.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement