I have a html page with couple of links to css & js files such as following..
<link href="file1.css" rel="stylesheet" type="text/css">
<script src="file2.js"></script>
My problem is that most browsers concurrently start many connections to the server to download the included files, and it will choke my weak server (small micro controller).
My question is, how can I force the browser to download the files one after another in my page?