Using jQuery to scroll through local pages
Hello,
I'm currently trying to make a responsive website that scrolls horizontally through all my pages with the click of an arrow.
my jquery looks like this:
$(document).ready( function(){
$('#rightarrow').click(function (){
window.location = 'pages/about.html'
});
});
It moves to the about page just fine, but i want to get it to scroll through all of my pages.
how would i go about doing that?