Answers for "input type file restrict file dimensions"

0

how to limit input file type to images

<!-- add the accept attribute as follows -->
<input type="file" multiple accept="image/*">
Posted by: Guest on July-09-2021
0

accept only video in input type file below size

var uploadField = document.getElementById("file");

uploadField.onchange = function() {
	// 2097152 ~ 2MB
    if(this.files[0].size > 2097152) {
       alert("File is too big!");
       this.value = "";
    };
};
Posted by: Guest on August-23-2021

Code answers related to "input type file restrict file dimensions"

Browse Popular Code Answers by Language