How to get full path of file while selecting file using
Did you mean this?
$('#i_file').change( function(event) { var tmppath = URL.createObjectURL(event.target.files[0]); $("img").fadeIn("fast").attr('src',tmppath); });