Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Katera je pravilna koda za preverjanje ustreznosti vsebine določenega vnosnega polja?
const value = $('.ime').val();const pattern = new Pattern('^[A-Za-z]*$');const valid = pattern.test(value);
).val();
);
valid = pattern.test(value);
const value = $('.ime').val();const pattern = RegExp('^[A-Za-z]*$');const valid = value.test(pattern);
valid = value.test(pattern);
const value = $('.ime').val();const pattern = RegExp('^[A-Za-z]*$');const valid = pattern.test(value);
const value = $('.ime').val();const pattern = new RegExp('^[A-Za-z]*$');const valid = value.test(pattern);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!