On loading module got JS error in jquery validator -


i using jquery form validation library

and need validate file input that. code follows:

    $.validate({          form : '#form',          modules : 'file',          validateonblur : false,          bordercoloronerror : 'red',          inputparentclassonerror : 'error',          scrolltotoponerror: false,          errormessageclass: 'text-error',            onerror : function() {            },          onsuccess: function($form) {              // input button disabled if form contains backend validations              $form.find('input[type="submit"]').unbind('click');              return true;          }      });

the problem when try load module file gives me js error

typeerror: a.formutils undefined" in file.js

i unable find out problem is.

any highly appreciated! thankyou.


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -