JavaScript onblur Event

You are Here:

JavaScript onblur Event

The onblur event occurs when an element has lost focus.

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

onblur Event as Attribute

Example

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

Syntax

As Attribute

<element onblur = "JavaScript">

As Property

object.onblur = function(){ // code };

Using Event Listener

object.addEventListener("blur" , myScript);

onblur Event as Property

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <input type="text"> <script> var x = document.getElementsByTagName("input")[0]; x.onblur = function(){ alert("Input field lost focus"); }; </script> </body> </html>

Using addEventListener() Method

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

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <input type="text"> <script> var x = document.getElementsByTagName("input")[0]; x.addEventListener("blur", function(){ alert("Input field lost focus"); }); </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