“Função de chamada JS ONLOAD” Respostas de código

Função de chamada JS ONLOAD

window.onload = function() {
  yourFunction(param1, param2);
};
Master Aniket

Chamada de função do JavaScript ONLOAD

window.onload = function() {
  yourFunction(param1, param2);
};
//DOMContentLoaded It means when the DOM Objects of the document are fully loaded and seen by JavaScript, also this could have been "click", "focus"...
//function() Anonymous function, will be invoked when the event occurs.
// not work with IE8
document.addEventListener("DOMContentLoaded", function() {
  you_function(...);
});
code fighter

Respostas semelhantes a “Função de chamada JS ONLOAD”

Perguntas semelhantes a “Função de chamada JS ONLOAD”

Mais respostas relacionadas para “Função de chamada JS ONLOAD” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código