Im wondering what the best way to check if the input type="field" field is available to the user?
At least iPhones and iPads does not allow the user to upload files, but rather than checking the user agent with backend code i'd like to hear what you think is the most minimalist solution?
The purpose is to check if file upoads is available, if not, set display:none; for the whole div containing the form.
Can this be done with only css? jQuery?
I'd prefer a solution which not explicitely does not check if(iOS) but rather does a more generic check.
Thank you in advance!