Answers for "javascript change the name of a button"

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 "javascript change the name of a button"

Browse Popular Code Answers by Language