一昔前の主流
2009年現在はこちらのほうがよろしいらしい。
http://www.slideshare.net/hayatomizuno/jquery-7665168
$(function () { alert('test'); });
setInterval(function(){ alert('test'); },10000);
if ($('#探したい場所のID .その配下のクラス').length > 0) { alert('test'); }
alert(typeof($.cookies.set));
定義されていればobjectとでる。
$('li')
$('li.hoge')
$("a[href]").each(function(){ }
$("DIV#hoge a[href]").each(function(){ }
$("input[type='checkbox']").removeAttr( 'checked' );
$("input[type='checkbox']").attr( 'checked', 'checked' );
$(".hoge .fuga input[type='checkbox']").removeAttr( 'checked' );
JavaでかかれたJavaScript実装。J2SE6.0から標準添付