I noticed today that we have an issue with jquery Validate when used in conjunction with placeholder text.
Example:
&
My quick solution:
$(".validateForm").submit(function(){ $(this).find("input[type=text]").each(function(){ if($(this).attr("placeholder") == $(this).val())$(this).val(""); }) })