Only started JS a couple of days ago, and I'm already having some troubles getting a toggle to work. I want the button to toggle between on
and off
when clicked.
function click() {
var change = document.getElementById("toggle");
if (change.innerHTML == "on"); {
change.innerHTML = "off";
} else {
change.innerHTML = "on";
}
}
<button type="button" id="toggle" onClick="click()">on</button>
Is this how I should go about it?