Skip to content

Instantly share code, notes, and snippets.

@keenahn
Created December 3, 2012 21:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keenahn/4198250 to your computer and use it in GitHub Desktop.
Save keenahn/4198250 to your computer and use it in GitHub Desktop.
JS: File upload validation
# Just some examples of how to do file validation with javascript
# IS NOT BULLETPROOF and should be coupled with server side validation
# But, it can help
validate_file = ->
file = @fileInput.files[0]
if "name" of file
name = file.name
else
name = file.fileName
if "size" of file
size = file.size
else
size = file.fileSize
if not file or not file.type.match(/image.*/)
alert "Only image files can be uploaded"
return
else if size and size > 5242880
alert "Please choose a file of size 5MB or smaller"
return
else if name
ext = name.substr(name.lastIndexOf(".") + 1).toLowerCase()
if ext isnt "jpg" and ext isnt "gif" and ext isnt "png" and ext isnt "jpeg"
alert "Please choose an image of type 'jpeg', 'jpg', 'png', or 'gif'"
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment