bloggerでjquery

BloggerでjQueryを利用する場合、googleがAPIを通じて提供しているjQueryを利用するのが早い。

手順は、下記のようになる。

ちなみに、google.load()関数の中の数字は、jQueryのバージョン。

<script src=“http://www.google.com/jsapi"></script><script type=“text/javascript”>google.load(“jquery”, “1.2.6”);google.setOnLoadCallback(function() { // Your code goes here.});</script>