2
Hello !
I have a select with values and video titles. I want to select the video by value and upload within a div.
SELECT THE VIDEO... Video-1 Video-2 Video-3
What a jquery would look like ?
2
Hello !
I have a select with values and video titles. I want to select the video by value and upload within a div.
SELECT THE VIDEO... Video-1 Video-2 Video-3
What a jquery would look like ?
2
Basically you can do this way by inserting a tag video (HTML5) in a div according to the selected option. The value of options you can put the URL (source) of the respective video.
Important to consult in this documentation compatibility options and other tag attributes
video.
Code:
$("#videos").change(function(){
var src = $(this).val();
var source = '<video width="400" controls><source src="'+src+'" type="video/mp4"></video>';
$("#player").html(source);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="videos">
<option value="">Selecione um vídeo...</option>
<option value="https://www.w3schools.com/html/mov_bbb.mp4">Vídeo-1</option>
<option value="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4">Vídeo-2</option>
</select>
<br>
<div id="player"></div>
Browser other questions tagged html jquery
You are not signed in. Login or sign up in order to post.
It worked perfectly. In my case I uploaded the videos locally. Then just have them search the server. Thank you very much.
– xavier
@Xavier, consider marking the answer as accepted, see https://i.stack.Imgur.com/evLUR.png and why https://pt.meta.stackoverflow.com/questions/1078/como-e-por-que-aceitar-uma-resposta/1079#1079
– user60252