Answers for "chance the text of a button by clicking"

1

how to change the text in a button on onclick

var btn = document.getElementById("mybtn");
btn.value = 'my value'; // will just add a hidden value
btn.innerHTML = 'my text';
Posted by: Guest on October-21-2020
0

change button text by id click java

<input type="button" value="Button Text" id="myButton1"></input>
Posted by: Guest on November-16-2020

Code answers related to "chance the text of a button by clicking"

Browse Popular Code Answers by Language