Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     $('#site-header a').click(function() {
  3.    
  4.     var divId = $(this).data('href');
  5.         $('body').animate({scrollTop: $('#' + divId).offset().top}, 800);
  6.     });
  7.  
  8.     // MenuButton
  9.     var menuBtn = $('#menu-button');
  10.     var menu = $('#site-menu > ul');
  11.  
  12.     menuBtn.click(function(e) {
  13.         e.preventDefault();
  14.         menu.slideToggle();
  15.     });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement