I can not save the entire html file [closed]

1

I can not save the html file completely.

Please click on the following link

link

then use the shortcut CTRL + S and save the file in html format, open the saved file and you can see that there is only a fragment of the page.

I need to know why and if you know any solution it would also be helpful.

Thanks = D

Note: it is not some ajax that works according to what is being visualized because if you disconnect from the internet and check the site (already loaded) the information is still there, even if you shade the whole site, copy it and save it, only you can save a fragment of the site¡¡ = S

    
asked by want_code_that 18.08.2018 в 21:53
source

1 answer

0

The problem is that the <div> are generated in the position that you are dynamically and when you try to save the page only those that have been previously generated on the web will be printed.

If you notice the first div generated is in position 0px:

But if you go down, you will see that the div of 0px disappears.

In short, the class ReactVirtualized__Grid__innerScrollContainer is the key to this whole problem. A grid makes the cells necessary to fill according to the current horizontal and vertical scroll position.

I hope you understood what the problem was.

Greetings!

    
answered by 22.08.2018 в 09:42