Loading jQuery UI

<head>   <link rel="stylesheet" type="text/css"     href="local/jquery-ui-1.10.3.css">   <script src="local/jquery-2.0.3.min.js"></script>   <script src="local/jquery-ui-1.10.3.min.js"></script> . . . or  for CDN. . .   <link rel="stylesheet" type="text/css"     href="http://code.jquery.com/ui/1.10.3/themes/base/jquery-ui.css">   <script src=     "http://code.jquery.com/jquery-2.0.3.min.js">   </script>   <script src=     "http://code.jquery.com/ui/1.10.3/jquery-ui.js">   </script> </head>

To load jQuery UI, you first need to load the jQuery library. The jQuery UI is also a .js file. You can load it just like any other JavaScript file. Also, just like jQuery, you can load the script from an ...

Get jQuery and JavaScript Phrasebook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.