Hello..
How to Validate Image Height and Width Using Javascript. In MVC I want Height And Width Not Less Then 1000.
Height=1000.
Width=1000.
Given Below Is mY Code:-
$("#BannerPic").change(function () {
debugger;
var height = this.height;
var width = this.width;
if (height > 1000 || width > 1000) {
alert("Height and Width must not exceed 100px.");
return false;
}
return true;
});


Ananth GPosted Dec 13, 2016, 9:17 AM