i have tried checking 2 input fields against each other:
$w.onReady( function () {
let value1 = $w( “#input1” ).value;
let value2 = $w( “#input2” ).value;
if ( value1 === value2) {
$w( “#updatebutton” ).show(); //do this thing
}
else if ( value1 !== value2) {
$w( “#updatebutton” ).hide(); //or else do this other thing
}});
does’nt work…