Here is my html
<input id="fileUploaderInput" ng-model="$ctrl.files" ng-change="$ctrl.onSelectFiles()" style="display: none" type="file"
ngf-select multiple>
<button type="button" class="button shed-btn button-energized" ng-click="$ctrl.onClickBrowse()">Browse</button>
My js code which triggers the click event of input element on button click.
vm.onClickBrowse = function () {
document.getElementById('fileUploaderInput').click();
}
It is working fine on android and iphone6 but not on iphone5. Any help would be appreciated
Please try this solution.
a) Wrap your input inside your button
b) Style the elements accordingly