javascript - PDF Preview before File Upload MVC -


in application, user have ability upload documents.

it looks this:

this

now underneath want file preview , pictures works. however, when try preview pdf shows this:

enter image description here

here code:

<img id="output" height="200" width="200"       accept="'image/jpeg,image/gif,image/png,application/pdf'" />  <script>   var loadfile = function (event) {     var output = document.getelementbyid('output');     output.src = url.createobjecturl(event.target.files[0]);   }; </script> 

is because of <img> tag? , display images? appreciated.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -