ItSolutionStuff.com

Angular Input Blur Event Example

By Hardik Savani • May 2, 2024
Angular

This is a short guide on angular input change event on blur event. This tutorial will give you simple example of blur event in angular. let's see example of on blur event in angular 9. step by step explain angular input blur event example.

In this post i will show you very simple example of onblur in event in angular. you can easily use blur event in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 application.

When user will key up on input box field then trigger onBlurEvent() of angular component. we will use (change) attribute for call function. let's see bellow logic code.

<input type="text" (blur)="onBlurEvent($event)" />

onBlurEvent(event: any){

console.log(event.target.value);

}

Let's see full examples now:

Example

src/app/app.component.html

<h1>Angular Textbox blur Event Example - ItSolutionStuff.com</h1>

<input type="text" (blur)="onBlurEvent($event)" />

src/app/app.component.ts

import { Component, VERSION } from '@angular/core';

@Component({

selector: 'my-app',

templateUrl: './app.component.html',

styleUrls: [ './app.component.css' ]

})

export class AppComponent {

name = 'Angular ' + VERSION.major;

onBlurEvent(event: any){

console.log(event.target.value);

}

}

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Angular Input Focus Event Example

Read Now →

Angular Input Keydown Event Example

Read Now →

Angular Input Keyup Event Example

Read Now →

Angular Input Keypress Event Example

Read Now →

Angular Input Change Event Example

Read Now →

Angular Material Checkbox Example

Read Now →

Angular Material Slide Toggle Example

Read Now →

Angular Material Textarea Tutorial

Read Now →

Angular Material Radio Button Example

Read Now →

Angular Material Input Box Example

Read Now →