I am about to use jQuery UI to build a web based GUI for a hardware product. It is very important that this GUI is always accessible 24/7 and be compatible for years and years down the road. I am not a computer genius, so this may seem like a dumb question, but I am concerned with the fact that the code generated by jQuery UI points to .js files located on a webserver. For example:
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
These two lines of code exist in my HTML HEAD tags. These files do not exist on my physical server, so what if these webservers were to go down? I believe that I would lose all functionality to my web GUI.
Would it make a difference if I were to copy and paste the code in these .js files and place them on my web server? That way the GUI's lifeline is in the hands of my own server.
Basically, I am asking if anyone knows how safe it is to use jQuery UI for a web based GUI that MUST not ever go down. I am missing something here and it would be very helpful if some one could explain to me in more detail how I could use jQuery UI in a safe and dependable way so that I am not depending on code that exists on another server. Thank you!