extension( [extension ] )Returns: Boolean
Description: Makes the element require a certain file extension.
-
extension( [extension ] )
-
extensionType: StringThe allowed file extensions, seperated with "|" (or a comma, ","), defaults to "png|jpe?g|gif".
-
Returns true if the value ends with one of the specified file extensions. If nothing is specified, only images are allowed (png, jpeg, gif).
Works with text inputs.
Part of the additional-methods.js file
Example:
Makes "field" required and ending with ".xls" or ".csv".
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
|
|