Need help about hidden button

hi, ı want to after ı clıck button1, button2 will be hidden(unvisible). how can ı do thıs? Thank you.

https://basbilir.wixsite.com/my-site-3

This should hide your button when clicked once onto it…

$w.onReady(()=>{
	$w('#myButtonIDhere').onClick(()=>{
		$w('#myButtonIDhere').hide();
	});
});

Thank you very much but ıt ıs not working :frowning:

i try one more time and it is working now. thank you very much.