Skip to content

Instantly share code, notes, and snippets.

@GaryUnbounce
Created February 18, 2014 22:27
Show Gist options
  • Select an option

  • Save GaryUnbounce/9081759 to your computer and use it in GitHub Desktop.

Select an option

Save GaryUnbounce/9081759 to your computer and use it in GitHub Desktop.
Add Smooth Scrolling Button Links
<script>
$(document).ready(function(){
$("[#lp-pom-button-21").click(function(event){
event.preventDefault();
$('html, body').animate({ scrollTop: $("#form").offset().top }, 1000);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment