Skip to content

Instantly share code, notes, and snippets.

@patrickposner
Created April 5, 2018 15:47
Show Gist options
  • Save patrickposner/1589bea6da60387c4310e1ef8e6ea55d to your computer and use it in GitHub Desktop.
Save patrickposner/1589bea6da60387c4310e1ef8e6ea55d to your computer and use it in GitHub Desktop.
add_action('wp_head','ps_scroll_on_submit');
function ps_scroll_on_submit() {
if(isset($_POST['submit'])) {
?>
<script>
$(function() {
$('html, body').animate({
scrollTop: $("#yourDiv").offset().top
}, 2000);
});
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment