how to wait till dom content load js code example
Example 1: javascript wait for document load
document.addEventListener("DOMContentLoaded", function(event) {
//do work
});
Example 2: wait for the dom to load javascript
document.addEventListener('DOMContentLoaded', (event) => {
//the event occurred
})