JavaScript onfocusin Event

You are Here:

JavaScript onfocusin Event

The onfocusin event occurs when an element is about to get focus.

Note: Unlike onfocus event, the onfocusin event will bubble, i.e., The element with onfocusin event will be affected when its child element gets focus.

onfocusin Event as Attribute

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Type your Name</p> <input type="text" onfocusin="myFunction(this)"> <script> function myFunction(x){ x.style.color = "red"; } </script> </body> </html>

Syntax

As Attribute

<element onfocusin = "JavaScript">

Using Event Listener

object.addEventListener("focusin" , myScript);

Using addEventListener() Method

Note: The addEventListener() method is not supported in Internet Explorer 8 and below.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Type your Name</p> <input type="text"> <script> var x = document.getElementsByTagName("input")[0]; function myFunction() { x.style.color = "red"; } x.addEventListener("focusin", myFunction); </script> </body> </html>

onfocus vs onfocusin

Check out the difference between onfocus vs onfocusin in javascript.

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author