I've read the reasons why having someone (say Google) do the hosting of jQuery and other js files is a good thing. However, I have a client that has domains like googlecode.com and googleapis.com blocked (a government agency).
I wanted to keep the Google hosted js files, but also have a local copy on my server for the above client (which is only a fraction of my cliental, but an important one).
Does having the same js file referenced in the same page cause any issues?
This is basically how it looks in my source, 1 listed after the other:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="/js/local/jquery.min.js"></script>