javascript - Is jQuery UI dependable? -


i use jquery ui build web based gui hardware product. important gui accessible 24/7 , compatible years , years down road. not computer genius, may seem dumb question, concerned fact code generated jquery ui points .js files located on webserver. 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 2 lines of code exist in html head tags. these files not exist on physical server, if these webservers go down? believe lose functionality web gui.

would make difference if copy , paste code in these .js files , place them on web server? way gui's lifeline in hands of own server.

basically, asking if knows how safe use jquery ui web based gui must not ever go down. missing here , helpful if 1 explain me in more detail how use jquery ui in safe , dependable way not depending on code exists on server. thank you!

for many scenarios, hosted jquery fine.

but, situation, should download jquery , jquery ui links on sites , place files in folder on webserver. change script lines point location on server instead of jquery.com site.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -