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
  • 58,085
  • 24
  • 103
  • 107
Katyoshah
  • 129
  • 10

1 Answers1

1
$(".YourClass").click(function () {
    $('html,body').animate({ scrollTop: $(this.hash).offset().top }, 500);
});
Anup
  • 9,396
  • 16
  • 74
  • 138