NeonRant
7/5/2019 - 12:47 AM

Preparing Javascript onload

This is to ensure all DOM elements have been loaded before running the script.

$( document ).ready(function() {
    console.log( "This fires when the document isloaded" );
});