I want to pass data from HTML to the component so I've created an event like this:
<div id="tutor-price" (click)="passCharge(r.value['charge'])"><span id="month">? 8?</span> <span id="price"> {{r.value['charge']}} </span></div>
And in component:
passCharge(charge){
this.charge = charge;
console.log(this.charge,"give me the number")
}
If I click the event, I see everything's working fine. But I want to trigger this click event automatically since I want the component to use 'this.charge' value right away once the component is done the loading.
Is there any way I can trigger (click) event automatically?
question from:https://stackoverflow.com/questions/45027331/angular2-how-to-trigger-click-event-without-clicking