hold type updated , delete done by prajkta

This commit is contained in:
2026-03-24 15:19:38 +05:30
parent 94b5563d15
commit dbeec9962d
7 changed files with 269 additions and 243 deletions

View File

@@ -3,7 +3,7 @@ $(document).ready(function () {
let holdType = $(this).val().replace(/^\s+/, "");
$(this).val(holdType);
let reg = /^[A-Za-z]/;
let reg = /^.+$/; // all pattern allow
if (!reg.test(holdType)) {
$("#holdTypeMessage").text("Hold Type must start with a letter.").css("color", "red");