Validate File extension on Client Side
by Mohan[ Edit ] 2012-12-26 16:43:02
Hai,
To check the file extension while uploading the file jquery can be used.
var imgext = $('#file_upload').val().split('.').pop().toLowerCase();
if($.inArray(imgext, ['jpeg','jpg']) == -1) {
alert('invalid extension!');
return false;