Hi Hardcore Dragon,
You can use onChange handlers for your inputs.
$w.onReady(function () {
//TODO: write your page related code here...
$w('#input3').onChange(() => {
let d = $w("#input3").value;
let c = $w("#input4").value;
if(d === "1" && c === "2") {
$w("#button3").hide();
$w("#table1").show();
}
});
$w('#input4').onChange(() => {
let d = $w("#input3").value;
let c = $w("#input4").value;
if(d === "1" && c === "2") {
$w("#button3").hide();
$w("#table1").show();
}
});
});
Let me know if that helps.