I need to validate the measurement of the photo attached. Profile photos should be 45 mm * 35 mm
$('#image-file').on('change', function(event) {
var photoSize = parseInt($("#sizeOne").val());
if (photoSize > 350000 && photoSize < 450000) {
$("#errorMsg").text("<spring:message code='sth.browseimage'/>");
$('#modal').modal('show');
event.preventDefault();
}
});
Thank you very much