Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
122 views
in Technique[技术] by (71.8m points)

javascript - Why my video is not redirecting to my website when uploaded to server?

My code works on my personal computer but when I upload it to the server which is Bluehost, it does not work. This is my code:

<script>
    $(document).ready(function(){   
       $("#myVideo").bind('ended', function(){
          location.href="https://ellooklatino.com/home.html";   
       }); 
      });
</script>
<body>
    <video id="myVideo" width="440" controls muted autoplay>
        <source src="videos/lookLatinoVideo.mp4" type="video/mp4">
        <source src="videos/lookLatinoVideo.ogg" type="video/ogg">
    </video>
</body>

Any suggestion are greatly appreciated it.

Thanks, Ren

question from:https://stackoverflow.com/questions/65931053/why-my-video-is-not-redirecting-to-my-website-when-uploaded-to-server

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...