グーグルのCDNを利用してjqueryを読み込む2
以前書いたメモの追記。jqueryの1.4.2とthemeまでグーグルから呼んでしまおうという奥義です。
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.4.2");
google.load("jqueryui", "1.8");
</script>
このthemeで読み込めるthemeの種類はhttp://jqueryui.com/developmentこちらの右下にある base, black-tie, blitzer, cupertino, dark-hive, dot-luv, eggplant, excite-bike, flick, hot-sneaks, humanity, le-frog, mint-choc, overcast, pepper-grinder, redmond, smoothness, south-street, start, sunny, swanky-purse, trontastic, ui-darkness, [...]




