Nav-Appaiya
10/20/2015 - 12:05 PM

Pure javascript documetn ready function (probably you want jquery to be loaded)

Pure javascript documetn ready function (probably you want jquery to be loaded)

<html>
<head>
</head>
<body>
Your HTML here

<script>
// self executing function here
(function() {
   // your page initialization code here
   // the DOM will be available here

})();
</script>
</body>
</html>