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 7: | Line 7: | ||
$('a[href^="#"]').click(function(e) { | $('a[href^="#"]').click(function(e) { | ||
e.preventDefault(); | e.preventDefault(); | ||
| − | var | + | var t = $(this).attr("href"); |
| − | $('html, body').animate({scrollTop: $( | + | $('html, body').animate({scrollTop: $(t).offset().top - 10 |
}, 800); | }, 800); | ||
}); | }); | ||
}); | }); | ||
Revision as of 21:15, 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 t = $(this).attr("href");
$('html, body').animate({scrollTop: $(t).offset().top - 10
}, 800);
});
});