Alexis-Reid-Design
-
Posts
11 -
Joined
-
Last visited
Reputation Activity
-
Alexis-Reid-Design reacted to tuanphan in How to stop background video from looping?
Try change to this
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> jQuery(document).ready(function($){ setTimeout( function() { $('video').removeAttr('loop'); }, 5000); }); </script> If it still doesn't work, keep this code in Code Injection & let me know, we can check it again easier
-
Alexis-Reid-Design reacted to david-eh in How to stop background video from looping?
That worked! Thanks a lot for your help.