Search
 
SCRIPT & CODE EXAMPLE
 

HTML

js get file from input

<input type="file" onchange="getFiles(event)" />
<script type="text/javascript">
	function getFiles(event) {
    	console.log(event.target.files)
    }
</script>
Comment

How to get input file using js

const selectedFile = document.getElementById('input').files[0];
Comment

PREVIOUS NEXT
Code Example
Html :: svg with src in html 
Html :: samp html 
Html :: html multiplications 
Html :: autocomplete not working in html 
Html :: how change button color in html 
Html :: get directions google maps html 
Html :: html for dummies 
Html :: textarea rows cols 
Html :: sudo: /opt/lampp/lampp: command not found 
Html :: disable close from screen modal popup 
Html :: html span title tooltip 
Html :: wordpress add shortcode to html block 
Html :: bootstrap table dense 
Html :: ng bootstrap input 
Html :: gap between grid layout bootstrap 
Html :: html textboxes 
Html :: how to get number list in html 
Html :: import script html 
Html :: bootstrap loader 
Html :: html date selector 
Html :: tailwind ul list type 
Html :: html input with icon right 
Html :: Div and span 
Html :: git pull one file 
Html :: html shortcuts 
Html :: how to add a button bootstrap 
Html :: image preview for website 
Html :: whatsapp link html 
Html :: comment a div in html 
Html :: bootstrap form textarea 
ADD CONTENT
Topic
Content
Source link
Name
8+8 =