Skip to content Skip to sidebar Skip to footer

Simultaneous Data Slows Down The Application

The problem I am encountering is that I have 5 different diagrams that load the random generated data simultaneously causing the application to run slow. The point of the applicati

Solution 1:

Instead of creating all diagrams when the page is loaded ($(window).on("load", ...)) you can provide 4 divs or the like with attached onclick handlers which would render a diagram when clicked. You can put some info text or even a symbolic picture of the diagram in the div.


Post a Comment for "Simultaneous Data Slows Down The Application"