Last Updated : 11 Jul, 2025
This attribute fires at that moment when the element loses focus. This attribute is mostly used in the Form validation code. This attribute is the opposite of onfocus attribute.
Supported Tags: It supports all HTML elements except these elements which are given below :
Syntax:
<element onblur = "script">
Attribute Value: This attribute is used to any HTML elements. The script run when onblur attribute called.
Example: In this example we use the onblur attribute to call a JavaScript function that converts the input text to uppercase when the user leaves the input field.
html
<!DOCTYPE html>
<html>
<head>
<title>onblur attribute</title>
<style>
body {
text-align: center;
}
h1 {
color: green;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>onblur attribute</h2>
<!-- When leave the input box then the input box
value is converted into capital letter. -->
Username: <input type="text"
name="fname"
id="GFG"
onblur="Geeks()">
<script>
function Geeks() {
let y = document.getElementById("GFG");
y.value = y.value.toUpperCase();
}
</script>
</body>
</html>
Output:
Supported Browsers: The browser supported by onblur attribute are listed below:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4