3 $('input[type=file]').on('change', function () {
4 if (window.FileReader && this.files && this.files[0]) {
6 var name = this.files[0].name;
7 if (this.getAttribute('data-ext')) {
8 var ext = this.getAttribute('data-ext');
9 var re = new RegExp('\\.(' + ext + ')$', 'i');
12 alert('Błędne rozszerzenie! Powinno być jedno z: ' + ext.replace(/\|/g, ', '));
14 alert('Błędne rozszerzenie! Powinno być: ' + ext);
18 var size = this.files[0].size;
19 if (size > 10 * 1024 * 1024) {
20 alert('Rozmiar pliku nie może przekraczać 10 MB!');