Answers for "js doxument done loading call fucntion"

22

window.onload

window.onload = function() {
  // Some code
};
Posted by: Guest on June-26-2020
1

how to trigger events when the document loads in js

document.addEventListener("DOMContentLoaded", ready);
function ready() {
    alert('DOM is ready');

    // image is not yet loaded (unless it was cached), so the size is 0x0
    alert(`Image size: ${img.offsetWidth}x${img.offsetHeight}`);
}
Posted by: Guest on October-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language