Difference between revisions of "Team:CCA SanDiego"

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

Revision as of 00:39, 4 September 2015