Skip to content

Instantly share code, notes, and snippets.

View narthanaj's full-sized avatar
🎯
Focusing

Narthana Jananjaya narthanaj

🎯
Focusing
View GitHub Profile
@yihyang
yihyang / scrollable-anchor.js
Created August 11, 2017 04:11
Make your anchor scrollable to Sections in HTML
$("button").click(function() {
$('html,body').animate({
scrollTop: $(".second").offset().top},
'slow');
});