Is there any way to check file size before uploading it using javascript.
feedback
|
|
No, you would have to use a Flash-based uploader like SWFUpload or Uploadify to do this. The SWFUpload Features Demo shows how the Note that this (obviously) needs Flash, plus the way it works is a bit different from normal upload forms. | |||
|
feedback
|
|
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:
And here it is in action: http://jsbin.com/ificu4 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. | ||||
|
feedback
|
|
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. | |||||
feedback
|
|
at the moment: no - but i don't know if there will be such a possibility in the future (with HTML5 or some other crazy stuff) | |||
|
feedback
|