Hi
I am getting above error 0n below code - \'
$('#txtSearch').keyup(function () {
if ($('#txtSearch').val().length > 1) {
$('#grdPlanning tr').hide();
$('#grdPlanning tr:first').show();
$('#grdPlanning tr td:containsNoCase(\'' + $('#txtSearch').val() + \')').parent().show();
}
else if ($('#txtSearch').val().length == 0) {
resetSearchValue();
}
});
Thanks
Amit MohantyPosted Jun 9, 2023, 5:38 AM
Prasad RaveendranPosted Jun 10, 2023, 5:28 AM
Try the below code and let me know
Vishal JoshiPosted Jun 9, 2023, 8:47 AM
Hello,
Please try the below code to get it work
Thanks