I was able to utilize jQuery to get what I needed. My form is in a Colorbox overlay (Inline HTML) so I needed it to scroll to the top of that popup upon submit to see any error message.
Here is what I came up with. ('#gform_submit_button_1').click(function() {
(’#cboxLoadedContent’).animate({scrollTop: 1}, ‘slow’);
});