Created
April 12, 2023 10:18
-
-
Save rousnay/2c61b1885e09dfaf25600ebe3d55d9bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fileInput = document.querySelectorAll('input[type="file"]'); | |
| console.log(fileInput); | |
| fileInput.forEach((element, index)=>{ | |
| let newNode = document.createElement('span'); | |
| newNode.classList.add("file-custom"); | |
| element.after(newNode); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment