change text on press of button css code example
Example 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';
Example 2: how to resize submit button in html
#search {
width: 20em; height: 2em;
}