I am getting error on below line
$(“#btnSave”).click(function () {
if (!$(“#formRoom”).valid()) {
return;
}
SaveRoomData();
});
});
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.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.