Skip to content

Instantly share code, notes, and snippets.

@VSeryoga
Created January 25, 2017 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VSeryoga/090b356305352c56298e2b6add4720fd to your computer and use it in GitHub Desktop.
Save VSeryoga/090b356305352c56298e2b6add4720fd to your computer and use it in GitHub Desktop.
Показать картинку из Input
$("input#photo").change(function(){
var reader = new FileReader();
reader.onload = function(event) {
the_url = event.target.result;
$(".form_sec img").attr("src", the_url);
console.log(the_url);
}
reader.readAsDataURL(this.files[0]);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment