- Posts: 24
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<div class="embed-responsive embed-responsive-16by9"> <video autoplay="autoplay" id="myvideo"><source src="https://myServer.de/myVideo.mp4" type="video/mp4" /> browser unterstützt dieses Format nicht.</video> </div>
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { // Hide the "Next" button $('#ls-button-submit').hide(); var vid = document.getElementById("myvideo"); vid.volume = 0.3; vid.onended = function() { // Show the "Next" button $('#ls-button-submit').show(); // $('#ls-button-submit').show().trigger('click'); } }); </script>