How to play / watch video before downloading using jquery

I used images loading preview with jquery and I also want to watch the video, but I don't get any hints. You have a solution. Any help would be appreciated.

Image preview works fine

function readURL(input) { $('#previewHolderalbumList').hide(); $('#previewHolderalbum').show(); if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function(e) { $('#previewHolder').attr('src', e.target.result); } reader.readAsDataURL(input.files[0]); } } $("#fileID").change(function() { readURL(this); }); 

Ragards,

Sonu Sindhu

+6
source share

All Articles