mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 01:11:43 +02:00
3 lines
102 B
JavaScript
3 lines
102 B
JavaScript
$('input:file').on("change", function() {
|
|
$('input:submit').prop('disabled', !$(this).val());
|
|
});
|