How to Install jQuery UI

This time, I will show you how to install jQuery UI on the document of the page. There are two methods to install jQuery UI in the document of the page. They are the Development and Production.

Development

Development is used for offline development of a website by the web developers because it contains uncompressed codes. This is an example of Development :
  1. <script src="jquery-1.10.2.min.js"></script>
Note: There are a lot of versions that are ready to download in the jQuery.com and it's free.

Production

Production is used for online development of a website by the web developers because of its minified and compressed. This is an examples of Production:

Microsoft CDN

  1. <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"></script>

Google CDN

  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script>
Note: The jQuery UI is a single Javascript file and its reference is inside the

Add new comment