“DocumentReady” Ответ

Документ готов jQuery

// A $( document ).ready() block.
$( document ).ready(function() {
    console.log( "ready!" );
});
Xerothermic Xenomorph

Документ готов JS

document.addEventListener("DOMContentLoaded", function(event) { 
  //we ready baby
});
Grepper

DocumentReady

// A $( document ).ready() block.
$( document ).ready(function() {
    console.log( "ready!" );
});
Lonely Lemur

Смотреть популярные ответы по языку

Смотреть другие языки программирования