Is there any way to check file size before uploading it using javascript.
|
|
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. 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. |
||||
|
|
|
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 Note that this (obviously) needs Flash, plus the way it works is a bit different from normal upload forms. |
||||
|
|
|
// Using jquery
|
|||
|
|
|
You can try this fineuploader It works fine under IE6(and avove), Chrome or Firefox |
|||||
|
|
If you're using jQuery Validation, you could write something like this:
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
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. |
|||||||
|

