style an upload button for phones/tablets
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
const body = document.querySelector('body');
|
||||
const form = document.querySelector('form');
|
||||
const grid_form = document.querySelector('.grid_form');
|
||||
const fileInput = document.querySelector('.fileUpload');
|
||||
const upload_card = document.querySelector('#upload_card');
|
||||
const textarea = document.querySelector('textarea');
|
||||
const select = document.querySelector('select');
|
||||
@@ -18,6 +19,7 @@ window.onload = () => {
|
||||
const onInput = () => {
|
||||
submitButton.classList.toggle('hidden', !textarea.value);
|
||||
select.classList.toggle('hidden', !textarea.value);
|
||||
fileInput.classList.toggle('hidden', textarea.value);
|
||||
}
|
||||
textarea.addEventListener('input', onInput);
|
||||
onInput();
|
||||
|
||||
Reference in New Issue
Block a user