Form Events



Write a javascript code to implement onfocus method.

<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>

Output: