$( document ).ready(function() { // Syntax highlighting Configuration hljs.configure({ tabReplace: ' ', // 4 spaces languages: [], // Languages used for auto-detection }); $('code').each(function(i, block) { hljs.highlightBlock(block); }); // Interesting DOM Elements var sidebar = $("#sidebar"); var page_wrapper = $("#page-wrapper"); $("#sidebar-toggle").click(function(event){ if(sidebar.position().left === 0){ sidebar.css({left: "-300px"}); page_wrapper.css({left: "15px"}); } else { sidebar.css({left: "0"}); page_wrapper.css({left: "315px"}); } }); });