I have a problem here.
Pre-problem
I am frontend mostly but trying to solve one important problem. All my backend is on java and I know you can load data to the page before it loads and then display it in html between the <%= data %> tags. But it takes a very long time to load all the data I need.
Problem
Is there a way to dynamically load more data to the page after it had been loaded? Or make it work on the background (some king of async, etc.)?
Right now waiting time before page loads is 5-10 seconds and it is extremely long. Also, while page loads everything looks like it froze.
More info
Please let me know if you need an example of my code, etc. Thank you!
I tried researching about it but only found some suggestions to use jQuery or other languages/plugins which i did not quite understand. I would like to make a solution which works with only jave, JS, jQuery if possible.