jQueryとjQuery UIのバージョンを確認(Google CDNを使う)

GoogleのCDN(Google AJAX Libraries API)を使ったときに読み込んだjQueryのバージョンを確認したくて調査したメモ。

サンプルコード

<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/redmond/jquery-ui.css" /> 
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
 // Load jQuery
 google.load("jquery", "1");
 google.load("jqueryui", "1");
</script>
<script type="text/javascript">
$(function() {
    alert($.fn.jquery);
    alert($.ui.version);
});
</script>

google.loadはバージョンを省略すると最新を読み込んでくれるので便利。現在は

jQuery 1.4.2

jQuery UI 1.8

となる。

jQuery UIのテーマはここの右下にあるCDNリンクから取得。

 

<関連記事>

MicrosoftとGoogleのCDNでjQuery.jsの読み込みを高速化