accept( mimetype )Returns: Boolean
Description: Makes a file upload accept only specified mime-types.
-
accept( mimetype )
-
mimetypeType: StringThe allowed type, seperated via ",", defaults to "image/*"
-
Uses the HTML5 file API to look at the type attribute of one or more selected files and validate that each matches the specified mime-type.
If nothing is specified, only images are allowed (image/*).
You can specify multiple mime-types by separating them with a comma, e.g. "image/x-eps,application/pdf".
Works with type="file" inputs.
Part of the additional-methods.js file
Note: This method used to look at just the filename, specifically the file extension. That behaviour is now available as the "extension" method inside src/additional/extension.js.
Example:
Required, only audio files allowed:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
|