Here we are implementing Validation of image extension before uploading file Using JavaScript. Goal of this tutorial to first validate the upload file is an image and if it is an image I will upload it otherwise fail to upload and show the error.
<input type="file" name="imagefile" id="imagefile" onchange="return ValidateFileUpload()" />
<SCRIPT type="text/javascript"> function ValidateFileUpload(){ var fuData = document.getElementById('imagefile'); var FileUploadPath = fuData.value; //To check if user upload any file if (FileUploadPath == '') { alert("Please upload an image"); } else { var Extension = FileUploadPath.substring( FileUploadPath.lastIndexOf('.') + 1).toLowerCase(); //The file uploaded is an image if (Extension == "gif" || Extension == "png" || Extension == "bmp" || Extension == "jpeg" || Extension == "jpg") { // To Display if (fuData.files && fuData.files[0]) { var reader = new FileReader(); reader.onload = function(e) { $('#blah').attr('src', e.target.result); } reader.readAsDataURL(fuData.files[0]); } } //The file upload is NOT an image else { alert("Photo only allows file types of GIF, PNG, JPG, JPEG and BMP. "); } } } </SCRIPT>
My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.