Answers for "button text change"

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

html how to change button text

<input type="button" value="Button Text Here">
Posted by: Guest on June-03-2021

Browse Popular Code Answers by Language