Skip to content

How to only accept images in an input file field

When adding a file field to a form, you might want to limit the selector to images

Of course you could add a server-side filter, but also having a client-side filter is a great UX for your users - no time wasted and no resources wasted to send a file to you and get back with an error.

You can do so by using the accept attribute, and specifying the MIME type of the files you accept.

image/* should catch all images.

<input type="file" name="myImage" accept="image/*" />

If you want to only allow some specific file types, list them:

<input type="file" name="myImage" accept="image/x-png,image/gif,image/jpeg" />

You can check the browser support for this attribute here: https://caniuse.com/#feat=input-file-accept


→ I wrote 17 books to help you become a better developer:

  • C Handbook
  • Command Line Handbook
  • CSS Handbook
  • Express Handbook
  • Git Cheat Sheet
  • Go Handbook
  • HTML Handbook
  • JS Handbook
  • Laravel Handbook
  • Next.js Handbook
  • Node.js Handbook
  • PHP Handbook
  • Python Handbook
  • React Handbook
  • SQL Handbook
  • Svelte Handbook
  • Swift Handbook
...download them all now!

Also, JOIN MY CODING BOOTCAMP, an amazing cohort course that will be a huge step up in your coding career - covering React, Next.js - next edition February 2025

Bootcamp 2025

Join the waiting list