Can we prevent extra loading of CSS and JS files in the pages which includes similar CSS and JS files. For example index.html file have a CSS and JS file and index1.html also have both CSS and JS same files. So if index.html file have loaded in a browser then at the time of loading index1.html no required of loading the CSS and JS pages i.e. can we reuse the previously loaded CSS and JS file in case of loading index2.html file.
All common jquery and related js scripts, images, css should be loaded only once. In other words, the login page load and subsequent pages are loading the common stuff every time. Can there is any way to solve this problem in HTML pages.
Thanks in advance.