3
Answers

How to Validate Image Height and Width Using Javascript.

Dr.Ajay Kashyap

Dr.Ajay Kashyap

8y
10.8k
1
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:-
 
<script>
$("#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;
});
</script>
 
Answers (3)