Hi, i put required on my text box and instead of red out the text box i would like to show a text message as well.
i tried this example but didnt work for me
$w.onReady( function () {
//TODO: write your page related code here…
$w(“#SellerName”).onCustomValidation( (value, reject) => {
if ( !value.length <1 ) {
reject(“Email address must be a wix.com address.”);
}
} );