hi, ı want to after ı clıck button1, button2 will be hidden(unvisible). how can ı do thıs? Thank you.
hi, ı want to after ı clıck button1, button2 will be hidden(unvisible). how can ı do thıs? Thank you.
This should hide your button when clicked once onto it…
$w.onReady(()=>{
$w('#myButtonIDhere').onClick(()=>{
$w('#myButtonIDhere').hide();
});
});
i try one more time and it is working now. thank you very much.