How to keep image type validation
Im new for the jquery..How can i put image type validation using jquery...i've kept size validation but unable to put image type validation...pls any one help me how to keep type validation using jquery
<script type="text/javascript">
$(document).ready(function() {
$('#id_image').bind('change', function() {
if(this.files[0].size > 1000141){
$('#formerror').html('File is too big');
}else{
$('#formerror').html(' ');
}
});
});
</script>