diff --git a/resources/js/script.js b/resources/js/script.js index 99ed8c0..37ca52b 100644 --- a/resources/js/script.js +++ b/resources/js/script.js @@ -1 +1,5 @@ //Nothing to see here folks +$(document).ready(function () { + var day = (new Date()).getDay() - 1; + $('#wrapper').scrollLeft($(document).width() * day); +});