Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to check file size before uploading it using javascript.

share|improve this question
are we talking HTML5? :) – sje397 Sep 15 '10 at 13:00
1  
The accepted answer to this question should be changed! – Pekka 웃 Nov 18 '12 at 11:10

8 Answers

up vote 44 down vote accepted

Yes, there's a new feature from the W3C that's supported by some modern browsers, the File API. It can be used for this purpose, and it's easy to test whether it's supported and fall back (if necessary) to another mechanism if it isn't.

Here's a complete example:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Show File Data</title>
<style type='text/css'>
body {
    font-family: sans-serif;
}
</style>
<script type='text/javascript'>
function showFileSize() {
    var input, file;

    // (Can't use `typeof FileReader === "function"` because apparently
    // it comes back as "object" on some browsers. So just see if it's there
    // at all.)
    if (!window.FileReader) {
        bodyAppend("p", "The file API isn't supported on this browser yet.");
        return;
    }

    input = document.getElementById('fileinput');
    if (!input) {
        bodyAppend("p", "Um, couldn't find the fileinput element.");
    }
    else if (!input.files) {
        bodyAppend("p", "This browser doesn't seem to support the `files` property of file inputs.");
    }
    else if (!input.files[0]) {
        bodyAppend("p", "Please select a file before clicking 'Load'");
    }
    else {
        file = input.files[0];
        bodyAppend("p", "File " + file.name + " is " + file.size + " bytes in size");
    }
}

function bodyAppend(tagName, innerHTML) {
    var elm;

    elm = document.createElement(tagName);
    elm.innerHTML = innerHTML;
    document.body.appendChild(elm);
}
</script>
</head>
<body>
<form action='#' onsubmit="return false;">
<input type='file' id='fileinput'>
<input type='button' id='btnLoad' value='Load' onclick='showFileSize();'>
</form>
</body>
</html>

And here it is in action. Try that with a recent version of Chrome or Firefox.


Slightly off-topic, but: Note that client-side validation is no substitute for server-side validation. Client-side validation is purely to make it possible to provide a nicer user experience. For instance, if you don't allow uploading a file more than 5MB, you could use client-side validation to check that the file the user has chosen isn't more than 5MB in size and give them a nice friendly message if it is (so they don't spend all that time uploading only to get the result thrown away at the server), but you must also enforce that limit at the server, as all client-side limits (and other validations) can be circumvented.

share|improve this answer

No Yes, using the File API in newer browsers. See TJ's answer for details.

If you need to support older browsers as well, you will have to use a Flash-based uploader like SWFUpload or Uploadify to do this.

The SWFUpload Features Demo shows how the file_size_limit setting works.

Note that this (obviously) needs Flash, plus the way it works is a bit different from normal upload forms.

share|improve this answer

// Using jquery

<form action="upload" enctype="multipart/form-data" method="post">

    Upload image:
    <input id="image-file" type="file" name="file" />
    <input type="submit" value="Upload" />

    <script type="text/javascript">
        $('#image-file').bind('change', function() {
            alert('This file size is: ' + this.files[0].size/1024/1024 + "MB");
        });
    </script>

</form>
share|improve this answer

You can try this fineuploader

It works fine under IE6(and avove), Chrome or Firefox

share|improve this answer
1  
Fine Uploader is not able to validate file size in IE9 and older as the do not support the File API is not supported. IE10 is the first version of Internet Explorer that supports the File API. – Ray Nicholus Nov 17 '12 at 18:09

If you're using jQuery Validation, you could write something like this:

$.validator.addMethod(
    "maxfilesize",
    function (value, element) {
        return this.optional(element) || (element.files && element.files[0]
                               && element.files[0].size < 1024 * 1024 * 2);
    },
    'The file size can not exceed 2MB.'
);
share|improve this answer
$(document)
        .click(
                function() {

                    $("#uploadId")
                            .change(
                                    function() {
                                        var f = this.files[0];
                                        var p = f.size;
                                        var fup = document
                                                .getElementById('uploadId');
                                        var fileName = fup.value;
                                        var ext = fileName
                                                .substring(fileName
                                                        .lastIndexOf('.') + 1);
                                        if (ext == "GIF" || ext == "gif"
                                                || ext == "jpg"
                                                || ext == "JPG"
                                                || ext == "jpeg"
                                                || ext == "JPEG"
                                                || ext == "bmp"
                                                || ext == "BMP"
                                                || ext == "png"
                                                || ext == "PNG") {
                                            if ((p <= 2097152)) {

                                                return true;
                                            }

                                            else {
                                                alert("Please upload the image max.size of 2 MB");

                                                $("#uploadId").val('');
                                                $("#uploadId").attr(
                                                        'enabled',
                                                        'enabled');

                                            }

                                        } else {
                                            alert("Please upload the images only");

                                            $("#uploadId").val('');
                                            $("#uploadId").attr('enabled',
                                                    'enabled');
                                        }
                                    });

                });
share|improve this answer
file size and type validation in jquery ...................himanshu – user1884500 May 10 at 8:31
 <script type="text/javascript">
 $(document)
    .click(
            function() {

                $(".file")
                        .change(
                                function() {
                                    var f = jQuery(this);
                                    var p = f[0].files[0].size;
                                    var fup = jQuery(".file");
                                    var fileName = fup.val();
                                    var ext = fileName
                                            .substring(fileName
                                                    .lastIndexOf('.') + 1);
                                    if (ext == "GIF" || ext == "gif"
                                            || ext == "jpg"
                                            || ext == "JPG"
                                            || ext == "jpeg"
                                            || ext == "JPEG"
                                            || ext == "bmp"
                                            || ext == "BMP"
                                            || ext == "png"
                                            || ext == "PNG") {
                                        if ((p <= 1048576)) {

                                            return true;
                                        }

                                        else {
                                            alert("Please upload the image max.size of 1 MB");

                                            $(".file").val('');
                                            $(".file").attr(
                                                    'enabled',
                                                    'enabled');

                                        }

                                    } else {
                                        alert("Please upload the images only");

                                        $(".file").val('');
                                        $(".file").attr('enabled',
                                                'enabled');
                                    }
                                });
            });
 </script>
share|improve this answer
This question is not tagged with jquery – Ray Nicholus May 16 at 12:36

Well it is not possible to check size of a file using javascript. You will need to check it in server side script . However with ActiveXObject you can check size of a file . But this works only with IE and not with other browsers.

share|improve this answer
2  
"However with ActiveXObject you can check size of a file . But this works only with IE..." And triggers security warnings. – T.J. Crowder Sep 15 '10 at 13:06
Please see above! – Relic 2 days ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.