- Posts: 4
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<div class="embed-responsive embed-responsive-16by9" id="divVideo"> <video autoplay="autoplay" id="myvideo"><source src="https://myServer/img/happypeanuts.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() { // Hide the video $('#divVideo').hide(); // Show the "Next" button $('#ls-button-submit').show(); // Proceed to next page // $('#ls-button-submit').show().trigger('click'); } }); </script>