Input Blur Event in Angular Example

May 17, 2020 | Category : Angular

This post will give you example of angular input blur event example. In this article, we will implement a angular textbox blur event example. step by step explain input box blur event angular. step by step explain angular input change event on blur event. Follow bellow tutorial step of blur event in angular.

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 and angular 9 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 - HDTuto.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...