We normally load JavaScript files as:
<script type="text/javascript" src="js/a.js"></script>
<script type="text/javascript" src="js/b.js"></script>
<script type="text/javascript" src="js/c.js"></script>
<script type="text/javascript" src="js/d.js"></script>
This will make 4 request-response calls. Is there a way "other than compressing those files into one", to reduce the number of GET calls? Something like following:
<script type="text/javascript" src="js/a.js, js/b.js, js/c.js, js/d.js"></script>
I saw such an example on Hacker News (news.ycombinator.com) some months ago but can't seem to find it now.
loading-timeis issue, you could load themasync.