Jump to content

Dynamically showing image upon selection a file from local pc, in HTML form


how to dynamically show the image in HTML form?  

  1. 1. how to dynamically show the image in HTML form?

    • 1
      0
    • 2
      0


Recommended Posts

Hi friends,

I have a simple HTML form with two elements, one is <input type ="file" ...>field and another is <img>.

My requirement is to show the image as soon as i browse and choose a file.

 

Please revert back to me ASAP.

 

Ajoy

<script language="javascript">
function viewpic()
{
var getfile = document.getElementById('pics').value;
document.getElementById('viewer').src='file:///'+getfile+'';
}
function imageloaded()
{
document.getElementById('viewer').style.display='block';
document.getElementById('viewer').style.width='300px';
document.getElementById('viewer').style.height='250px';
}
</script>

<img id="viewer" src="" style="display:none" onload="imageloaded()"><br><br>

<input type="file" id="pics" onblur="viewpic()">

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.