How can i hide a button until a certain conditon is fufilled? I have no coding experience and dont understand most of the post online :(

I’m trying to make a virtual escape room via wix and i am trying to make buttons show up only when a certain condition is fulfilled like typing in a keyword or clicking on certain objects. I tried googling about it, but i do not really understand most of the codes posted by others online. Please help

Ok, lets first take a look onto CONDITIONS. How you can create conditions in JS ?

Of course using —> “If-Else-Queries”

if(i would be young again) {i would change a lot of things}
if( x === 3 ) {do something} else {do something else}

In your case…

if ($w('#myInputFieldIDhere').value) { $w('#myButtonIDhere).show() }
else {... do something else here ...} 

thank you!