
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
github.com/kswedberg/jquery-smooth-scroll
Advanced tools
Allows for easy implementation of smooth scrolling for same-page links.
Note: Version 2.0+ of this plugin requires jQuery version 1.7 or greater.
npm install jquery-smooth-scroll
or
yarn add jquery-smooth-scroll
Then, use import jquery-smooth-scroll;
Note: This assumes window.jQuery is available at time of import.
<!--
You can get a URL for jQuery from
https://code.jquery.com
-->
<script src="SOME_URL_FOR_JQUERY"></script>
<script src="https://cdn.statically.io/gh/kswedberg/jquery-smooth-scroll/3948290d/jquery.smooth-scroll.min.js"></script>
Grab the code and paste it into your own file:
You can try a bare-bones demo at kswedberg.github.io/jquery-smooth-scroll/demo/
$('a').smoothScroll();$('#container a').smoothScroll();$('#container a').smoothScroll({excludeWithin: ['.container2']});$('a').smoothScroll({exclude: ['.rough','#chunky']});$('.backtotop').smoothScroll({offset: -100});$('a').smoothScroll({beforeScroll: function() { alert('ready to go!'); }});$('a').smoothScroll({afterScroll: function() { alert('we made it!'); }});hashchange event listener. You can also include a history management plugin such as Ben Alman's BBQ for ancient browser support (IE < 8), but you'll need jQuery 1.8 or earlier. See demo/hashchange.html or demo/bbq.html for an example of how to implement.The following options, shown with their default values, are available for both $.fn.smoothScroll and $.smoothScroll:
{
offset: 0,
// one of 'top' or 'left'
direction: 'top',
// only use if you want to override default behavior or if using $.smoothScroll
scrollTarget: null,
// automatically focus the target element after scrolling to it
// (see https://github.com/kswedberg/jquery-smooth-scroll#focus-element-after-scrolling-to-it for details)
autoFocus: false,
// string to use as selector for event delegation
delegateSelector: null,
// fn(opts) function to be called before scrolling occurs.
// `this` is the element(s) being scrolled
beforeScroll: function() {},
// fn(opts) function to be called after scrolling occurs.
// `this` is the triggering element
afterScroll: function() {},
// easing name. jQuery comes with "swing" and "linear." For others, you'll need an easing plugin
// from jQuery UI or elsewhere
easing: 'swing',
// speed can be a number or 'auto'
// if 'auto', the speed will be calculated based on the formula:
// (current scroll position - target scroll position) / autoCoefficient
speed: 400,
// autoCoefficent: Only used when speed set to "auto".
// The higher this number, the faster the scroll speed
autoCoefficient: 2,
// $.fn.smoothScroll only: whether to prevent the default click action
preventDefault: true
}
The options object for $.fn.smoothScroll can take two additional properties:
exclude and excludeWithin. The value for both of these is an array of
selectors, DOM elements or jQuery objects. Default value for both is an
empty array.
If you need to change any of the options after you've already called .smoothScroll(),
you can do so by passing the "options" string as the first argument and an
options object as the second.
Utility method works without a selector: $.smoothScroll()
Can be used to scroll any element (not just document.documentElement / document.body)
Doesn't automatically fire, so you need to bind it to some other user interaction. For example:
$('button.scrollsomething').on('click', function() {
$.smoothScroll({
scrollElement: $('div.scrollme'),
scrollTarget: '#findme'
});
return false;
});
The $.smoothScroll method can take one or two arguments.
scrollTarget option."+=100px" or "-=50px" (see below for an example).The following option, in addition to those listed for $.fn.smoothScroll above, is available
for $.smoothScroll:
{
// The jQuery set of elements you wish to scroll.
// if null (default), $('html, body').firstScrollable() is used.
scrollElement: null
}
If you use $.smoothScroll, do NOT use the body element (document.body or $('body')) alone for the scrollElement option. Probably not a good idea to use document.documentElement ($('html')) by itself either.
.find() or .next().document.scrollingElement on compatible browsers when the selector is 'html' or 'body' or 'html, body'..find() or .next().$('html, body').firstScrollable().animate({scrollTop: someNumber}, someSpeed)document.scrollingElement on compatible browsers when the selector is 'html' or 'body' or 'html, body'.With smoothScroll version 2.1 and later, you can use the "relative string" syntax to scroll an element or the document a certain number of pixels relative to its current position. The following code will scroll the document down one page at a time when the user clicks the ".pagedown" button:
$('button.pagedown').on('click', function() {
$.smoothScroll('+=' + $(window).height());
});
If you want to scroll to an element when the page loads, use $.smoothScroll() in a script at the end of the body or use $(document).ready(). To prevent the browser from automatically scrolling to the element on its own, your link on page 1 will need to include a fragment identifier that does not match an element id on page 2. To ensure that users without JavaScript get to the same element, you should modify the link's hash on page 1 with JavaScript. Your script on page 2 will then modify it back to the correct one when you call $.smoothScroll().
For example, let's say you want to smooth scroll to <div id="scrolltome"></div> on page-2.html. For page-1.html, your script might do the following:
$('a[href="page-2.html#scrolltome"]').attr('href', function() {
var hrefParts = this.href.split(/#/);
hrefParts[1] = 'smoothScroll' + hrefParts[1];
return hrefParts.join('#');
});
Then for page-2.html, your script would do this:
// Call $.smoothScroll if location.hash starts with "#smoothScroll"
var reSmooth = /^#smoothScroll/;
var id;
if (reSmooth.test(location.hash)) {
// Strip the "#smoothScroll" part off (and put "#" back on the beginning)
id = '#' + location.hash.replace(reSmooth, '');
$.smoothScroll({scrollTarget: id});
}
Imagine you have a link to a form somewhere on the same page. When the user clicks the link, you want the user to be able to begin interacting with that form.
As of smoothScroll version 2.2, the plugin will automatically focus the element if you set the autoFocus option to true.
$('div.example').smoothScroll({
autoFocus: true
});
In the future, versions 3.x and later will have autoFocus set to true by default.
If you are using the low-level $.smoothScroll method, autoFocus will only work if you've also provided a value for the scrollTarget option.
Prior to version 2.2, you can use the afterScroll callback function. Here is an example that focuses the first input within the form after scrolling to the form:
$('a.example').smoothScroll({
afterScroll: function(options) {
$(options.scrollTarget).find('input')[0].focus();
}
});
For accessibility reasons, it might make sense to focus any element you scroll to, even if it's not a natively focusable element. To do so, you could add a tabIndex attribute to the target element (this, again, is for versions prior to 2.2):
$('div.example').smoothScroll({
afterScroll: function(options) {
var $tgt = $(options.scrollTarget);
$tgt[0].focus();
if (!$tgt.is(document.activeElement)) {
$tgt.attr('tabIndex', '-1');
$tgt[0].focus();
}
}
});
$.fn.smoothScroll method looks
for an element with an id attribute that matches the <a> element's hash.
It does not look at the element's name attribute. If you want a clicked link
to scroll to a "named anchor" (e.g. <a name="foo">), you'll need to use the
$.smoothScroll method instead.$.fn.smoothScroll and $.smoothScroll methods use the
$.fn.firstScrollable DOM traversal method (also defined by this plugin)
to determine which element is scrollable. If no elements are scrollable,
these methods return a jQuery object containing an empty array, just like
all of jQuery's other DOM traversal methods. Any further chained methods,
therefore, will be called against no elements (which, in most cases,
means that nothing will happen).Thank you! Please consider the following when working on this repo before you submit a pull request:
src/jquery.smooth-scroll.js.jshint grunt file options and the .jscsrc file. To be sure your additions comply, run grunt lint from the command line.--author flag to ensure that proper authorship (yours) is maintained.FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.