I am using php for post submission handling, but here i want to restrict the image upload size to 20kb before form submission. Here i am trying to uploading 3 images one by one in different fields. Need help with this
Thank You
user.php
<input type="file" text-align="right" class="filestyle" name="p1" id="p1" data-size="sm" data-input="false" required/>
<input type="file" text-align="right" class="filestyle" name="p2" id="p2" data-size="sm" data-input="false" required/>
<input type="file" text-align="right" class="filestyle" name="p3" id="p3" data-size="sm" data-input="false" required/>
Script Here i am viewing the file size
$('#p1').bind('change', function() {
alert('This file size is: ' + this.files[0].size/1024/1024 + "MB");
});
How to restrict the size of the image before clicking submit button