I often use this jQuery validation plugin to validate forms and it works great. Really pleased with it, but when you press Submit on a form it automatically puts focus on th
Use the focusInvalid option and set it to false :
focusInvalid
false
$("#abc").validate({ focusInvalid: false });
Working example here and Documentation here (options tab)