how to trigger events when the document loads in js
document.addEventListener("DOMContentLoaded", ready);functionready(){alert('DOM is ready');// image is not yet loaded (unless it was cached), so the size is 0x0alert(`Image size: ${img.offsetWidth}x${img.offsetHeight}`);}