Thursday, November 13, 2025
HomeLanguagesJavascriptJavaScript | WebAPI | File | File.type Property

JavaScript | WebAPI | File | File.type Property

The File.type property is an inbuilt function of File WebAPI which gives the media type (MIME) of the file represented by a file object.

Syntax:

var name = file.type;

Return Value: It returns a string containing media type (MIME) indicating the type of the file. For example: “image/png” for PNG images.

Example:




<!DOCTYPE html>
<html>
<head>
    <title>
        WebAPI File.type
    </title>
    <style>
        #test {
            padding: 10px;
            width: 300px;
            border: 1px solid green;
            text-align:center;
            font-size:22px;
        }
    </style>
</head>
  
<body>
    <div id = "test">
        <div>neveropen</div>
        <div>file.type</div>
          
        <input type = "file" multiple onchange
                = "myGeeks(this)">
    </div>
      
    <script type = "text/javascript">
        function myGeeks(fileInput) {
              
        var files = fileInput.files;
          
            for (var i = 0; i < files.length; i++) {
                  
                var file_name = files[i].name;
                var file_type = files[i].type;
                  
                alert("Filename: " + file_name
                    + ", Type: " + file_type);
            }
        }
    </script>
    </body>
</html>                            


Output:

Supported Browsers: The browser supported by WebAPI File.type property are listed below:

  • Edge
  • Google Chrome 13.0
  • Firefox 3.6
  • Opera 16.0
  • Internet Explorer 10.0
  • Safari

Reference: https://developer.mozilla.org/en-US/docs/Web/API/File/type

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11916 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6836 POSTS0 COMMENTS
Umr Jansen
6839 POSTS0 COMMENTS