jQuery Ready イベント ロジック:
// Catch cases where $(document).ready() is called after the
// browser event has already occurred.
if ( document.readyState === "complete" ) {
// Handle it asynchronously to allow scripts the opportunity to delay ready
return setTimeout( jQuery.ready, 1 );
}
「スクリプトが準備を遅らせる機会を与えるために非同期で処理する」というコメントについて説明していただけますか。
どのスクリプトがわかりません。また、なぜready を遅らせる必要があるのですか?