Angular 4 change event is working fine with input type text which is as below
<input type="text" (change)="updateData($event)"/>
but when we write code as below then It does't work.
<span id="fname" (change)="updateData($event)"></span>
Can anyone give me litter insight for this behavior and If possible then best way to achieve the same.