I want to use this scroll nav in this link http://startbootstrap.com/template-overviews/scrolling-nav/
for scrolling pages it is needed to click the link but I want this to be done automatically without need to click on the link.
could anyone help me pointing out where I'm going wrong in the code snippet below?
//jQuery for page scrolling feature - requires jQuery Easing plugin $(function() { $('a.page-scroll').bind('click', function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top }, 1500, 'easeInOutExpo'); event.preventDefault(); }); }) In my project there is no any Mouse for clicking and I need 3 separate page with different data, and I want to show these data dynamically for example 10 second showing page one and after that scroll or move to next page and .... , without stoppage.
hover?