-
-
Save ftrivino/d08c8069144e977fc0ac65f2f1c1e926 to your computer and use it in GitHub Desktop.
jQuery upload image take the base64 code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<metea charset="utf8"> | |
<title></title> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.js"></script> | |
<script type="text/javascript"> | |
function readURL(input) { | |
if (input.files && input.files[0]) { | |
var reader = new FileReader(); | |
reader.onload = function (e) { | |
$('#falseinput').attr('src', e.target.result); | |
$('#base').val(e.target.result); | |
}; | |
reader.readAsDataURL(input.files[0]); | |
} | |
} | |
</script> | |
</head> | |
<body> | |
<h1>File Upload</h1> | |
<input id="fileinput" type="file" accept="image/gif, image/jpeg, image/png" onchange="readURL(this);" /> <br><br> | |
<textarea id="base"></textarea> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment