It is necessary to display a fairly large array of text blocks on one page, about 50,000 !! The nuance is that the text should be shown by mouse hovering, that is, it is possible that the text itself is not necessary to load initially, but you need to unload and show on the page only the blocks themselves, their location.

Coordinates are stored in MySql. At first it was played with div + position:absolute , but the browser simply goes to space. Now I train on map + area .

Tell me what else you can apply in this sad case?

  • What is meant by blocks? - tutankhamun
  • How is this question different from this ? - Grundy
  • one
    Try to break 50,000 entries, for example, into 100 and, thus, make sure that you have 50,000/100 = 500 page indexes and output 500 each. And users will enter the pages through the GET form: first page = 1-500 records, second page = 501-1000 records .. and so on. - nick
  • "How is this question different from this?" there are occupied unoccupied places, there is text information, there are absolutely different projects. Well, still similar to the author))) may be similar if you look from the inside. Like two questions in one topic can not be? - Sergey V.
  • one block - one div - Sergey V.

0