[jQuery] jQuery 3.0 からは $( document ).ready( handler ) のような書き方は推奨されない
過去のコードを眺めていてそういえばと言うことで調査しました。
As of jQuery 3.0, only the first syntax is recommended; the other syntaxes still work but are deprecated.
the first syntax とは $( handler )
ハンドラーを直接呼び出す書き方。
これだけで DOM 全体のロードが完了した時点で実行される。
$(function() {
// Handler for .ready() called.
});
下記のような .ready
メソッドを利用は推奨されない。
$( document ).ready(function() {
// Handler for .ready() called.
});
このあたりも参考に。
memo. 的に。