When a user moves the mouse over the button, it will change text. When the mouse is moved away, the text will change back. Perfect for adding short instructions on a submit button.
<!– Paste this code into the BODY section of your HTML document –>
<input type=”submit” value=”Click here” onmouseover=”this.value=’== Just click once! =='” onmouseout=”this.value=’Click here!'”>