Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Other ways to check the file size before upload

Is there any other way that I can just check the size of a file before upload? The requirement is if the file exceeded the limit, the form mustn't submit. If it's not, I have to do the ordinary upload using the form and I don't have to exactly upload the file to the server using Flash.

like image 727
jean27 Avatar asked Feb 03 '10 06:02

jean27


1 Answers

Is there any other way that I can just check the size of a file before upload?

Not in JavaScript, the file size is not in the DOM.

like image 68
Jonas Elfström Avatar answered Sep 22 '22 01:09

Jonas Elfström