Skip to content

Instantly share code, notes, and snippets.

@krillo
Created January 9, 2018 16:13
Show Gist options
  • Save krillo/81685b545852028de5a6278213ce0170 to your computer and use it in GitHub Desktop.
Save krillo/81685b545852028de5a6278213ce0170 to your computer and use it in GitHub Desktop.
Magento2 jquery scroll to
<script type="text/javascript">
require(['jquery'], function (jQuery) {
jQuery(document).ready(function ($) {
$('#cpa-scroll-to-desc').click(function (event) {
event.preventDefault();
$('html,body').animate({
scrollTop: $(".box-collateral").offset().top - 120}, 'slow');
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment