$('.imagesignfile').on( 'change', function() {
myfile = $( this ).val();
var ext = myfile.split('.').pop();
if(ext=="jpeg" || ext=="jpg" || ext=="png" || ext=="JPG")
{
//|| ext=="gif"
if(this.files[0].size < (1024 * 1024 * 3))
{
$('.button_submit_disable').attr('disabled', false);
// $(".documnetvalidation").html('');
}
else
{
$('.button_submit_disable').attr('disabled', true);
//$(".documnetvalidation").html("The Image Uploaded is Larger Than 3 MB");
$('#Common_messagebox').modal('show');
$('.commonmessagebox').html("The Image Uploaded is Larger Than 3 MB");
$(".imagesignfile").val('');
}
}
else
{
$('.button_submit_disable').attr('disabled', true);
//$(".documnetvalidation").html(" Upload only jpeg,jpg,png format images");
$('#Common_messagebox').modal('show');
$('.commonmessagebox').html(" Upload only jpeg, jpg, png format images");
$(".imagesignfile").val('');
}
});