javascript - Scrolling to a specific div using window.onload without adding to the web address -
javascript - Scrolling to a specific div using window.onload without adding to the web address - i creating page 5 divs. using next javascript code smoothly move between them horizontaly : $(function () { $('ul.nav a').bind('click', function (event) { var $anchor = $(this); $('html, body').stop().animate({ scrollleft: $($anchor.attr('href')).offset().left }, 1500,'easeinoutexpo'); event.preventdefault(); }); }); the divs this: <div class="section white" id="section5"> <h2>technologies</h2> <p> text </p> <ul class="nav"> <li><a href="#section1">1</a></li> <li><a href="#section2">2</a></li> <li><a href="#section3">3...