Difference between revisions of "Team:CCA SanDiego"

Line 10: Line 10:
 
$.ready(
 
$.ready(
  
// navigation click actions
 
jQuery('.scroll-link').on('click', function(event){
 
event.preventDefault();
 
var sectionID = jQuery(this).attr("data-id");
 
scrollToID('#' + sectionID, 750);
 
});
 
// scroll to top action
 
jQuery('.scroll-top').on('click', function(event) {
 
event.preventDefault();
 
jQuery('html, body').animate({scrollTop:0}, 'slow');
 
});
 
 
$(".firstHeading").remove()
 
$(".firstHeading").remove()
  

Revision as of 00:38, 4 September 2015