jquery

対象要素スクロール時点に表示

$(window).scroll(function () { var disp_target = $("#target_id"); var topOffset = $('#xy_html').offset().top; if ($(this).scrollTop() > topOffset) { disp_target.fadeIn(200); } else { disp_target.fadeOut(200); } });

attrとpropの取得の違い

//チェックした値を取得する $(":checkbox").click(function() { alert($(this).prop('checked')); alert($(this).attr('checked')); }); チェック時 prop→true attr→checked 非チェック時 prop→false attr→undefined 返却される結果が異なります。

AngularJS おすすめサイト

http://js.studio-kingdom.com/jqueryui/widgets/widget_factory

bootstrap css カスタマイズ

urlはこちら http://pikock.github.io/bootstrap-magic/app/index.html#!/editor

jquery youtube 検索