Open In App

HTML DOM FocusEvent relatedTarget Property

The DOM FocusEvent relatedTarget Property is used to return the name of the Element that is related to that element that triggered the focus/blur event. It is read only Property. 

Syntax: 



event.relatedTarget

Return Value: It returns a reference to the related element or it returns a null if there are no related elements.

Example: In this example, we will see the use of DOM FocusEvent relatedTarget Property.






<!DOCTYPE html>
<html>
 
<body style="text-align:center;">
    <h1>GeeksForGeeks </h1>
    <h2>
        FocusEvent relatedTarget Property
    </h2>
    <textarea rows="4" cols="50">
        Geeksforgeeks.It is a
        computer science portal for Geeks.
    </textarea>
    <br>
    <br> Input field:
    <input type="text" onfocus="RelatedElement(event)">
    <p>
        <b>
            First click on Textarea element
            and then click the Textarea Element
        </b>
    </p>
    <script>
        function RelatedElement(event) {
            alert(
                "The related element that lost focus was: "
                + event.relatedTarget.tagName);
        }
    </script>
 
</body>
 
</html>

Output: 

 

Supported Browsers: The browsers supported by DOM FocusEvent relatedTarget Property are listed below: 


Article Tags :