Team:StanfordBrownSpelman/jquery.scroll

From 2014.igem.org

(Difference between revisions)
Jotthek (Talk | contribs)
(Created page with "$(document).ready(function() { $("#team").click(function() { $('body, html').animate({ scrollTop: $("#teamNoodle").offset().top }, 700); e.preventDefault(); ...")
Newer edit →

Revision as of 22:53, 11 August 2014

$(document).ready(function() {

$("#team").click(function() {

   $('body, html').animate({
       scrollTop: $("#teamNoodle").offset().top
   }, 700);
   e.preventDefault();
   });

$("#projects").click(function() {

   $('body, html').animate({
       scrollTop: $("#place").offset().top
   }, 700);
   e.preventDefault();
   });
   

$("#wiki").click(function() {

   $('body, html').animate({
       scrollTop: $("#splash").offset().top
   }, 700);
   e.preventDefault();
   });
   

$("#contact").click(function() {

   $('body, html').animate({
       scrollTop: $("#precontact").offset().top
   }, 700);
   e.preventDefault();
   });
   

$("#pics").click(function() {

   $('body, html').animate({
       scrollTop: $("#images").offset().top
   }, 700);
   e.preventDefault();
   });
   

$("#data").click(function() {

   $('body, html').animate({
       scrollTop: $("#results").offset().top
   }, 700);
   e.preventDefault();
   });
   

$("#methods").click(function() {

   $('body, html').animate({
       scrollTop: $("#process").offset().top
   }, 700);
   e.preventDefault();
   });
   

$("#links").click(function() {

   $('body, html').animate({
       scrollTop: $("#references").offset().top
   }, 700);
   e.preventDefault();
   });

$("#top").click(function() {

   $('body, html').animate({
       scrollTop: $("#header").offset().top - $("#header").height()
   }, 700);
   e.preventDefault();
   });

$("#contact").click(function() {

   $('body, html').animate({
       scrollTop: $("#test2").offset().top
   }, 700);
   e.preventDefault();  
   });
            });