Pull to refresh
0
0
Send message
or the javascript way:
Array.apply(null, document.querySelectorAll('input[type=file].my')).forEach(input => {
	input.addEventListener('change', e => {
  	let label = Array.apply(null, document.querySelectorAll('label')).find(l => l.htmlFor === input.id);
  	label.innerHTML = (input.value ? 'Выбрано файлов: ' + input.files.length : 'Выберите файлы')
  });
})

Information

Rating
Does not participate
Registered
Activity