Answers for "image upload in html js"

8

how to display uploaded image in html using javascript

<p><input type="file"  accept="image/*" name="image" id="file"  onchange="loadFile(event)" style="display: none;"></p>
<p><label for="file" style="cursor: pointer;">Upload Image</label></p>
<p><img id="output" width="200" /></p>

<script>
var loadFile = function(event) {
	var image = document.getElementById('output');
	image.src = URL.createObjectURL(event.target.files[0]);
};
</script>
Posted by: Guest on April-22-2021
1

upload image html javascript

<input type="file"  accept="image/*" name="image" id="file" style="display: none;">
Posted by: Guest on January-16-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language