3
Reply

How to Validate Image Height and Width Using Javascript.

Dr.Ajay Kashyap

Dr.Ajay Kashyap

Dec 13 2016 6:18 AM
432
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)