-
Notifications
You must be signed in to change notification settings - Fork 110
Closed
Description
Refer to: jquery-validation/jquery-validation#1997
The method
andSelfwas deprecated back in version 1.8 of jQuery and instead used as an alias foraddBack. This plugin usesandSelfinparse()of the unobtrusive version of the validator. It works fine in older versions in jQuery, however, beginning jQuery 3.0,andSelfis removed completely: https://api.jquery.com/andSelf/The fix for this is just to replace
andSelfwithaddBackin the parse function. The validator then works as it should under jQuery 3.
It seems like this repo doesn't have the issue. However, the version that is hosted on NuGet does have it.