Hello,
I have a gallery reel which I'd like to auto-scroll. I currently have a script that does work, however, it makes me unable to edit the site once its enabled. Is there any way around that? Here is my script:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
jQuery(document).ready(function($){
setInterval(function(){
$('.gallery-reel-control-btn[data-next]').click()
},3500);
})
</script>
Thanks!