I want to create a directive (alert-select) that can make some actions when I change the value of a select element
<select alert-select [(ngModel)]="area_id">
<option value="1">Area 1</option>
<option value="2">Area 2</option>
</select>
I want (without use (change)) to alert(area_id) the value of the select every time I change it.