Mega Code Archive

 
Categories / JavaScript Tutorial / Form
 

OnFocus event handler

< html> <head> <script language="JavaScript" type = "text/javascript"> <!-- function DisplayMsg(NumVal) {     if (NumVal == 1) {        status = "Type your name in the field" ;     }     if (NumVal == 2) {        status = "Type your phone number in the field"     } } //--> </script> <title>Keyboard Event</title> </head> <body> <form name="form1"> <b>Name:</b>&nbsp; <input type = "text" name = "text1" onFocus="DisplayMsg(1)" size="20"><P> <b>Phone:</b> &nbsp;<input type = "text" name = "text2" onFocus="DisplayMsg(2)" size="20"></p> </form> </body> </html>