Hello everyone,
I have a footer buton called buton1.
When the page where the button is shows, I execute a javascript with a countdown, and when it reached 0 I need to disable the button and to change its text.
Could you help me with this, I have tried several convinations but neither had worked for me.
i.e.
document.getElementById("button").innerHTML = "New text"
document.getElementById("button").disabled = true;
Apperyio('button').text("New text");
Apperyio('button').attr('disabled', 'disabled');
Thanks.