Template:Team:Berkeley/scrollspyOffset.js

From 2013.igem.org

Revision as of 02:11, 28 October 2013 by Tnrich (Talk | contribs)

$('#navbar ul li a').bind('click', function(e) {

   e.preventDefault();
   $('html, body').animate({
       scrollTop: $(this.hash).offset().top -690
   }, 300);
   // edit: Opera requires the "html" elm. animated

});