JSFiddle - React, Tailwind, and code Playground
by Artur Soul
HTML
<input type="text" class="form-control m-input" id="frm_gtin" maxlength="15" pattern="\d*{1,14}" required title="GTIN не может содержать более 14 символов">
JavaScript
function InvalidMsg(input) {
let str = input.value;
if(str.length !== 0 && str.length < input.getAttribute('maxlength')){
if (!str.replace(/\s/g, '').length) {
input.setCustomValidity('Название не может быть равно значению « » (пробел)');
}
}
return true;
}