端くれプログラマの備忘録 jQuery UI [jQuery UI] 基本メモ: 準備

[jQuery UI] 基本メモ: 準備

本家サイトからjQuery UIをダウンロードする。

jQuery UI
https://jqueryui.com/

  • Stable v1.11.4 jQuery 1.6+
    jquery-ui-1.11.4.zip
  • Stable (Themes) v1.11.4 jQuery 1.6+
    jquery-ui-themes-1.11.4.zip

ひな形

<!doctype html>
<html lang="us">
<head>
    <meta charset="utf-8">
    <title>jQuery UI Example Page</title>
    <link href="css/smoothness/jquery-ui.css" rel="stylesheet">
</head>
<body>
    ...
    <script src="js/jquery.js"></script>
    <script src="js/jquery-ui.js"></script>
</body>
</html>