I have a form where I uploads the image, in the jQuery function;
$('body').on('change', '#file', function () {
By using this.files[0] I am getting image name and size. for this I am using.
this.files[0].size and this.files[0].name. But now I want to get height and width of image. How can I do that?