jQuery Validate – Hide display validation error messages / show custom errors
Use a custom error placement function (see the plugin’s options) that doesn’t append the error message to anything. $(‘#form’).validate({ errorPlacement: function(error,element) { return true; } }); Or you could put the error messages elsewhere on the page – say in a DIV at the top of the page.