I need to download images with dimension limitations just like the extension I can do something like this:
upload: function (e) {
var files = e.files;
$.each(files, function () {
if (this.extension.toLowerCase() != ".jpg") {
ShowError('Only jpg are allowed', '');
e.preventDefault();
}
});
},
How about in dimension limitations? What am i suppose to do? Thanks