css change button text after click code example
Example 1: javascript when button clicked different text appears
function show() {
var box = document.getElementById('box');
var displaySetting = myClock.style.display;
var showButton = document.getElementById('showButton');
if (displaySetting == 'block') {
myClock.style.display = 'none';
clockButton.innerHTML = 'Show box';
}
else {
myClock.style.display = 'block';
clockButton.innerHTML = 'Hide box';
}
}
Example 2: css change the button text value
document.getElementById("myButton").innerHTML="new button text";