I'm building a website which imports a javascript library (located inside <head>
):
<script type="text/javascript" src="@routes.Assets.at("nicedit/nicEdit.js")"></script>
which means,
every page loading (no matter which page in my website), this line exists.
I wanted to know if modern browsers download the library once, and then cache it,
or every page load - the javascript is library re-downloaded.
thanks