Answer the question
In order to leave comments, you need to log in
How to instantly display an image?
How is it possible for the user to enter a link to an image, and the image itself is immediately displayed?
There is a script
<script type="text/javascript">
function inputt() {
var input_taker = document.getElementById('inputt').value;
document.getElementById('blockss').innerHTML = input_taker;
}
</script>
<input type="text" id="inputt" onkeyup="inputt()">
<p id="blockss"></p>
Answer the question
In order to leave comments, you need to log in
this will help you (if I understood you correctly)
https://www.javascripture.com/FileReader
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question