function to do when the html done loading

Solutions on MaxInterview for function to do when the html done loading by the best coders in the world

showing results for - "function to do when the html done loading"
Oscar
29 Jun 2016
1window.addEventListener('load', function () {
2  alert("It's loaded!")
3})