JSFiddle - React, Tailwind, and code Playground
HTML
<input
type="file" accept="image/x-png,image/jpg,image/jpeg"
/>
JavaScript
const isAppleMobile = () => {
if (/iPhone|iPad|iPod/i.test(navigator.userAgent)) {
alert('i device')
return true
} else {
alert('other device')
return false
}
}
isAppleMobile()