Does anyone know if there is an event that fired successfully with client-side validation and how I will use it.
I enabled it, but I need to run some script onSuccess.
<% Html.EnableClientValidation(); %>
Thanks in advance.
You can use jquery and attach the function to the form submit
$("form").submit(function(event){ //You can use event.preventDefault() to stop the form from submitting on it own if($(this).valid()) { //Do something } else { } };
http://api.jquery.com/submit/
Source: https://habr.com/ru/post/1775872/More articles:JPA: Does EntityManager.find () always return the same object reference for the same key? - javaExternal HTML served through Sharepoint 2010 - sharepoint-2010SQL Server: Get the position (sequence number) of a record in a table - sqlUsing Apache ANT to deploy web applications? - phpScaling Silverlight toolkit diagrams? - chartsUsing a WPF polygon in another thread - multithreadingMySQL Conditional Where clause - mysqlРазвертывание сайта Maven завершается с отказом SCP Connection - Windows - javaDjango - ChoiceField - selection buttons instead of selection window - djangoEntity Structure and Views - sql-server-2008All Articles