Uncaught TypeError: $(...).valid is not a function

I am getting error on below line

$(“#btnSave”).click(function () {
if (!$(“#formRoom”).valid()) {
return;
}
SaveRoomData();
});
});

I can’t find .valid() in the jQuery API. I do see a plugin but that would need to be added separately.

https://jqueryvalidation.org/valid/

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.