Submit.onFocus
|
|
The onFocus event handler is fired when focus is set to that particular submit button. |
<html> <head> <script language="JavaScript"> <!-- var counter = 0;
function sendAway(){ document.myForm.myText.focus(); document.myForm.counter.value = counter++; } -->
</script> </head> <body onLoad='sendAway()'> <form name="myForm"> <input type=TEXT value="First Box" name="myText"> <input type=SUBMIT value="Submit" name="mySubmit" onFocus='sendAway()'><br> <input type=TEXT size=2 value="" name="counter"> </form> </body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
-
|