5

How to delete preview video file with javascript or jquery

 3 years ago
source link: https://dev.to/pudgeline/how-to-delete-preview-video-file-with-javascript-or-jquery-4ea8
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

How to delete preview video file with javascript or jquery

Aug 7

・1 min read

js code :

$('#showvideo').on('change', function () {
        var $source = $('#video_here');
        $source[0].src = URL.createObjectURL(this.files[0]);
        console.log($source[0].src);
        $source.parent()[0].load();
    });
Enter fullscreen modeExit fullscreen mode

html code:

<video class="video"controls>
<source src="mov_bbb.mp4" id="video_here">
</video>
<input type="file" name="video" id="showvideo" class="file_multi_video" accept="video">
Enter fullscreen modeExit fullscreen mode

...............................................................
I try to delete scr but nothing happen,
how can I deselect the video that selcted.

thanks for your helping guy's,


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK