0

i want to scroll down with jQuery from a href to a specific div , my code is :

<ul class="menu2">
    <li><a href="#whoweare">About</a></li>
    <li><a href="#services">Services</a></li>
</ul>
<div id="whoweare"></div>
<div id=services "></div>

thank you

Tushar Gupta - curioustushar
  • 56,454
  • 22
  • 99
  • 107
Katyoshah
  • 129
  • 10

1 Answers1

1
$(".YourClass").click(function () {
    $('html,body').animate({ scrollTop: $(this.hash).offset().top }, 500);
});
Anup
  • 8,818
  • 16
  • 63
  • 126