// new version
$(function () {
});
//old version
$(document).ready(function() {
});
// jQuery Shorthand ----------------------------
$(() => {
// ...
});
//js dom ready
document.addEventListener("DOMContentLoaded", function(event) {
//we ready baby
});
$(document).ready(() => {
console.log('ready');
});