Code: Select all
$('#form-upload input[name=\'file\']').on('change', function () {
if ((this.files[0].size / 1024) > 0) {
$(this).val('');
alert('error_file_size');
}
if (!this.files[0].name.endsWith('.ocmod.zip')) {
$(this).val('');
alert('');
}
});