/ Published in: PHP
Image file upload, javascript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script language="javascript"> function Checkfiles() { var fup = document.getElementById('logo1'); var fileName = fup.value; var ext = fileName.substring(fileName.lastIndexOf('.') + 1); if(ext == "gif" || ext == "GIF" || ext == "JPEG" || ext == "jpeg" || ext == "jpg" || ext == "JPG" || ext == "png" || ext == "PNG") { return true; } else { alert("Upload JPG, JPEG, PNG, GIF images only"); fup.focus(); return false; } } </script> onchange="Checkfiles()"
URL: http://programming-tut.blogspot.in/2010/02/javascript-validate-file-upload.html