Hi,
You can apply cssclass to all the validators and then find by class and then hide it.like i have done for requiredField
<asp:RequiredFieldValidator CssClass="Validator" runat="server">
</asp:RequiredFieldValidator>
and then simply
$(.Validator).hide();