I have div id="menuitem1"
and, when someone clicks on that div, I want the page to scroll 1000px
down the page.
I know this is something that's easy to Google, but for some reason, even after reading articles and trying all sorts of things, I can't figure it out. I'm new to this stuff, so please be understanding of that. Thanks!
<script type="text/javascript">
$("#menuitem1").click(function(){
$(window).scrollTo( {top:'1000px'}, 800 );
});
</script>
the javascript function you need would look something link this:
and for the html button, well, just:
best of luck