AJAX Libraries API とは
Google AJAX API で jQueryを読み込む方法メモ
jQuery 1.3.2を読み込む
<script type="text/javascript"
src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.3.2");</script>
jQuery 1.3.xを読み込む
<script type="text/javascript"
src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.3");</script>
jQuery 1.x.xを読み込む
<script type="text/javascript"
src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1");</script>
実際にjQueryをGoogle AJAX Libraries API で使ってみて
Web制作小物ツールでGoogle AJAX Libraries API を使ってみたんだけど、
ここ1ヶ月でGmailが調子悪い日が2日くらいあって、
Gmailが調子悪いとGoogle AJAX API も調子悪くなってた。
月に2回はちょっと多いなぁ。。。
悩んだけど、Google AJAX Libraries API を使うのを止めました。
もう少し安定したら、再度使ってみようかな。