Answers for "onclicked button text change in only one comonent"

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

Code answers related to "onclicked button text change in only one comonent"

Browse Popular Code Answers by Language