this is where a timer variable will be displayed
The onload event is a standard event in the DOM, while the ready event
is specific to jQuery. The $(window).load() event on the window and/or body
element will fire once all the content of the page has been loaded, this
includes all images, scripts, etc. The jQuery method $(document).ready()
is called when the webpage is loaded and interpreted just far enough to start
manipulating the DOM. This method uses the jquery library to detect when the
DOM is ready for JavaScript to execute.