Urgent Help

How you make a button such that when you click on the button, it will cause another button on another page to appear? :slight_smile:

Try something like:

//Page1
import {{local}} from 'wix-storage';
$w.onReady(() => {
    $w("#button1").onClick(event => {
    local.setItem("showButton", "yes");
    })
})
//page 2
import {{local}} from 'wix-storage';
$w.onReady(() => {
    local.getItem("showButton") === "yes" ? $w("#button1").show() : $w("#button1").hide();
})

[updated]