Click here to Skip to main content
15,888,521 members

Comments by Abhinaw Kumar Singh (Top 2 by date)

Abhinaw Kumar Singh 2-Jul-14 8:37am View    
you should remove the change listener..

function showImage(src,target) {
var fr=new FileReader();
fr.onload = function(e) { target.src = this.result; };
fr.readAsDataURL(src.files[0]);

}
Abhinaw Kumar Singh 19-Jun-14 8:04am View    
:)