/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function validateVideoFileExtension(fld_value) { if(!/(\.flv|\.avi|\.mov|\.mpg|\.wmv|\.m4v|\.mp3|\.wma|\.3gp)$/i.test(fld_value)) { //alert("Invalid image file type."); //fld.form.reset(); //fld.focus(); return false; } return true; }