victorjonsson / jQuery-Form-Validator

[DISCONTINUED] jQuery plugin that makes it easy to validate user input while keeping your HTML markup clean from javascript code.
972 stars 476 forks source link

Validate on server side #696

Closed Paxlol closed 6 years ago

Paxlol commented 6 years ago

I had an issue using the version 2.3.77. Im trying to use the server side validation but i cant, my code is: $("#Form_Contacto").ready(function() { $.validate({ form : '#Form_Contacto', modules: 'validate_server', lang : 'es', onSuccess : function($form) { return false; } }); }); But the debugger show 404 error: GET https://cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.3.77/validate_server.js 404 ()

if i use modules: 'server' the issue is the same. Can you help me