<html> <head> <title> onfocus Demo </title> <script> function message() { alert("You Enterd The Textbox"); } </script> </head> <body> <form> Name = <input type="text" name="t1" value="" onfocus="message()"> <br> Age = <input type="text" name="t1" value=""> </form> </body> </html>