JavaScript onfocusout Event

You are Here:

JavaScript onfocusout Event

The onfocusout event occurs when an element is about to lose focus.

Note: Unlike onblur event, the onfocusout event will bubble, i.e., The element with onfocusout event will be affected when its child element loses its focus.

onfocusout Event as Attribute

Example

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

Syntax

As Attribute

<element onfocusout = "JavaScript">

Using Event Listener

object.addEventListener("focusout" , 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 and Blur the input field</p> <input type="text"> <script> var x = document.getElementsByTagName("input")[0]; function myFunction() { x.style.color = "red"; } x.addEventListener("focusout", myFunction); </script> </body> </html>

onblur vs onfocusout

Check out the difference between onblur vs onfocusout 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