I have this error, and I don't know what to do
This is my code
js:
var uploadField = document.getElementById("file");
console.log(uploadField);
uploadField.onchange = function() {
console.log("new")
if(this.files[0].size > 2200000){
alert("File is too big!");
this.value = "";
};
};
html:
<input id ="post-input" id type="file" placeholder="Foto do Cartaz" name="image" accept=".png,.jpeg,.jpg,.gif" class="file-input" style="color: black;"/>
What's the best solution, I've searched and none of the solutions that help everybody, helped me.