When I click on myButton1
button, I want the value to change to Close Curtain
from Open Curtain
.
HTML:
<input onclick="change()" type="button" value="Open Curtain" id="myButton1"></input>
Javascript:
function change();
{
document.getElementById("myButton1").value="Close Curtain";
}
The button is displaying open curtain right now and I want it to change to close curtain, is this correct?
If you prefer binding your events outside the html-markup (in the javascript) you could do it like this:
It seems like there is just a simple typo error:
Corrected code:
A faster and simpler solution would be to include the code in your button and use the keyword this to access the button.
This worked fine for me. I had multiple buttons which I wanted to toggle the input value text from 'Add Range' to 'Remove Range'
Try this,