sandeep
sandeep

Reputation: 675

How to limit browse button to valid image files only

I want that whenever we click on browser button to upload so only image file is comes automatically instead of other file extension

Upvotes: 1

Views: 542

Answers (1)

Starx
Starx

Reputation: 79031

You cannot restrict the upload, with just using HTML. There are two ways AFAIK

  • Read the file types and deny, after the form is submitted at the back end.
  • Use plugins like uploadify to restrict while selecting the file

Upvotes: 1

Related Questions