I need to understand when does a body’s onload gets called
I read in w3school that onload=Script to be run when a document load what does this mean?
Does it mean that
- the html/jsp page gets loaded before rendering any elements in the body like any
tableor jsp scriplets eg:<%= request.getParameter("NAME") %> - Or is it after the page/body is rendered?
for example:
I have a bunch of params (<%= request.getParameter("NAME") %>,...) so in order to use them i’ll place them in some hidden form item & then on body load can I use them?
Unlike w3schools, MDN explains when the event is fired:
So the DOM tree is ready and all elements have been loaded.