There is this code :-
$('#myFile').bind('change', function() {
alert(this.files[0].type);
});
to get the file type. This code :-
$('#myFile').bind('change', function() {
alert(this.files[0].size);
});
to get the file size. But I could not find any jQuery API to get the file dimensions. Please tell me about any. Any help will be appreciated. Thanks in advance.