Checking file size limit – Jquery ajax
i need help in checking file size before uploading file, i want to check the size of file and then continue to upload $("form#data").submit(function(e) { e.preventDefault(); if(this.files[0].size > 2097152){ alert("File is too big!"); this.value = ""; return false; }; var…