Let's see if someone can help me.
I want to use in a file html
several different scripts in vanilla javascript
and I find the problem of using the functions when the document is loaded with the instruction:
document.onload = function (){
......
}
Having several onload
only the last one is executed, so it's not what I'd like.
Do you recommend me to do something?