I need in this code Error message when the person write wrong value in input.
Somthing like “show” box1 (box1 is error message).
And i need that “let value = 111” not only numbers allowed. I want make with letter.
This is code:
export function button175_click(event) {
let value = 111;
let valueS = value.toString()
if ($w("#input1").value === valueS) {
wixWindow.openLightbox('Test');
}
}