Howdy folks! On submission, in Safari at least, the page is resetting with the confirmation at the top of the page. The result is a bit awkward. On submission, I'd like the browser to either stay where it is (do nothing) or scroll to the top. I tried the following:
<script type="text/javascript">
jQuery(document).bind('gform_confirmation_loaded', function(){
jQuery(window).scrollTop();
});
</script>
No success yet. Any ideas?