I\'ve seen many questions with variations on this theme, but I\'m looking for the straightforward solution:
HTML form, jQuery validation, multiple fields are required. W
Maybe you could check what input failed and take it's position (top) and use jQuery's scrollTop
$(window).scrollTop(errorPosition)
It seems that getting each error field isn't very easy to get (at least for me).
Search for errorPlacement
in the Validation plugin documentation. There is an example how to get each error field.