Skip to content

Instantly share code, notes, and snippets.

@Neoglyph
Created March 26, 2019 16:05
Show Gist options
  • Save Neoglyph/fc6c3cd22982ea9033e93c408737a486 to your computer and use it in GitHub Desktop.
Save Neoglyph/fc6c3cd22982ea9033e93c408737a486 to your computer and use it in GitHub Desktop.
Limit file size on file input (basic javascript)
var imageStatus = document.getElementById('my-file-input');
// imageStatus = input[type="file"]
if (files[0].size > fileMaxSize) {
imageStatus.innerText = 'Datoteka ne sme biti večja od 5MB!';
imageUpload.value = '';
var imageUploadClone = imageUpload.cloneNode(true);
imageUpload.parentNode.replaceChild(imageUploadClone, imageUpload);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment