Created
April 5, 2018 15:47
-
-
Save patrickposner/1589bea6da60387c4310e1ef8e6ea55d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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