Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

HTML onblur Event Attribute

❮ HTML Event Attributes

Example

Validate an input field when the user leaves it:

<input type="text" name="fname" id="fname" onblur="myFunction()">
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The onblur attribute fires the moment that the element loses focus.

Onblur is most often used with form validation code (e.g. when the user leaves a form field).

Tip: The onblur attribute is the opposite of the onfocus attribute.


Browser Support

Event Attribute
onblur Yes Yes Yes Yes Yes

Syntax

<element onblur="script">

Attribute Values

Value Description
script The script to be run on onblur

Technical Details

Supported HTML tags: All HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title>

More Examples

Example

Using "onblur" together with the "onfocus" attribute:

<input type="text" onfocus="focusFunction()" onblur="blurFunction()">
Try it Yourself »

Related Pages

HTML DOM reference: onblur event


❮ HTML Event Attributes