How to trigger the file upload input in Angular 4? I'm trying, but it's not working.
Instead of input button, I have to click on div and trigger the input type button.
app.html:
<input id="custom-input" type="file" >
<div (click)="myEvent(custom-input)">
Click here to upload file
</div>
app.ts:
myEvent(event) {
alert("event");
event.nativeElement.click();
}