javascript onclick scroll to div on middle page ?
I tested my code, but not scroll to middle page,
How to scroll to middle of page ?
https://jsfiddle.net/ytgu1fbo/2/
<script>
function scroll_to_contact_form_fn() {
$('html, body').animate({
scrollTop: $("#myForm").offset().top -500
}, 200);
}
</script>
i Tried this code too but not scroll ^^
<script>
function scroll_to_contact_form_fn() {
$('html, body').animate({
scrollTop: $("#myForm").offset().middle
}, 200);
}
</script>