[Solved] SCRIPT5007: Unable to get value of the property ‘call’: object is null or undefined jquery.validate.min.js, line 50 character 199

[Solved] SCRIPT5007: Unable to get value of the property ‘call’: object is null or undefined
jquery.validate.min.js, line 50 character 199

This issue will come if you have validate.min.js with jQuery plugin more than 1.9.1 version.
Reason:
In jQuery 1.9.1 and above they removed the “event.handle”, but the same would have been used in the validate jQuery plugin.
Solution:

Update “event.handle” to “event.dispatch” will resolve this issue.

 

Where to Update ?

In jQuery Validate plugin search for event.handle and update the same to event.dispatch.

 

 

Thanks for reading this post.

Leave a Reply