Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <script type="text/javascript">
  2. function readURL(input){
  3. if(input.files && input.files[0]){
  4. var reader = new FileReader();
  5. reader.onload = function(e){
  6. $('#tampil').attr('src', e.target.result);
  7. }
  8. reader.readAsDataURL(input.files[0]);
  9. }
  10. }
  11. $("#fupload").change(function(){
  12. readURL(this);
  13. $('#hasil').show();
  14. });
  15. </script>