I’m trying to make a kind of puzzle on my site. I am trying to code it so that you have to type a code into an input field, but I’m really new to Velo coding. My code isn’t working. Can someone help me fix my code?
$w.onReady(function () {
if($w('#input1').value = '8213') {
$w("#button1").show();
}
else {
$w("#button1").hide();
}
} );
});
);