Open In App

HTML DOM onfocusin Event

Last Updated : 22 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML DOM onfocusin event occurs when an element is getting focused. The onfocusin is the same as onfocus, the only difference is that onfocus event does not bubble. If you want to find out whether an element or its child gets the focus, you should use the onfocusin event. The onfocusin event is the opposite of the onfocusout event. 

Note: Firefox does not support the onfocusin event but with the help of capturing listeners you can find out whether a child of an element gets the focus or not. 

Syntax: 

In HTML:

<element onfocusin="myScript">

In JavaScript (may not work as expected in Chrome, Safari, and Opera 15+):

object.onfocusin = function(){myScript};

In JavaScript, using the addEventListener() method:

object.addEventListener("focusin", myScript);

Example: Using HTML 

HTML




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green">
              GeeksforGeeks
          </h1>
        <h2>HTML DOM onfocusin Event</h2>
      Focus:
        <input type="text" onfocusin="GFGfun(this)">
 
        <script>
            function GFGfun(foc) {
                foc.style.background = "yellow";
            }
        </script>
    </center>
</body>
 
</html>


Output:

  

Example: Using JavaScript 

HTML




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green">
              GeeksforGeeks
          </h1>
        <h2>HTML DOM onfocusin Event</h2>
        Focus:
        <input type="text" id="fname">
       
        <script>
            document.getElementById(
                "fname").onfocusin = function () {
                    myFunction()
                };
 
            function myFunction() {
                document.getElementById(
                    "fname").style.backgroundColor = "yellow";
            }
        </script>
       
    </center>
</body>
 
</html>


Output:

  

Example: Using the addEventListener() method: 

HTML




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
        <h2>HTML DOM onfocusin Event</h2>
        Focus:
        <input type="text" id="fname">
 
        <script>
            document.getElementById(
                "fname").addEventListener("focusin", gfgFun);
            function gfgFun() {
                document.getElementById(
                    "fname").style.backgroundColor = "yellow";
            }
        </script>
    </center>
</body>
 
</html>


Output: 

Supported Browsers: The browsers supported by HTML DOM onfocusin Event are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox 52
  • Apple Safari
  • Opera


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads