Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save celticwebdesign/d7f03929d316329ac9a797e5ee1e6f04 to your computer and use it in GitHub Desktop.
Save celticwebdesign/d7f03929d316329ac9a797e5ee1e6f04 to your computer and use it in GitHub Desktop.
Works on page and from other page.
var top_space = 0;
if( width <= 1023 ) {
top_space = 0;
} else {
top_space = 105;
}
function scroll_to() {
// https://stackoverflow.com/questions/6677035/jquery-scroll-to-element
$('html, body').animate({
scrollTop: $(".cs_contact_form").offset().top-top_space
}, 1000);
}
if( $("body.home").length > 0 ) {
$("body.home .header-button a, body.home #footer-call a").click(function(e) {
e.preventDefault();
scroll_to();
});
if( window.location.hash == '#contact' ) {
scroll_to();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment