Difference between revisions of "MediaWiki:Common.js"
[http://www.nga.gov/content/ngaweb/research/casva/research-projects.html A Project of the National Gallery of Art, Center for Advanced Study in the Visual Arts ]
Line 4: | Line 4: | ||
$(function() { | $(function() { | ||
− | + | ||
$('a[href^="#"]').click(function(e) { | $('a[href^="#"]').click(function(e) { | ||
e.preventDefault(); | e.preventDefault(); | ||
var target = $(this).attr("href"); | var target = $(this).attr("href"); | ||
− | $('html, body').animate({scrollTop: $(target).offset().top - | + | $('html, body').animate({scrollTop: $(target).offset().top - 10 |
}, 800); | }, 800); | ||
}); | }); | ||
}); | }); |
Revision as of 21:05, March 7, 2017
/* Any JavaScript here will be loaded for all users on every page load. */ /*jQuery smooth scroll script*/ $(function() { $('a[href^="#"]').click(function(e) { e.preventDefault(); var target = $(this).attr("href"); $('html, body').animate({scrollTop: $(target).offset().top - 10 }, 800); }); });