Wednesday 21 February 2024

Video play and end point redirec to other URL

    jQuery('.playaudio').on('click',function(){

   //alert('onclick');
 if (localStorage.getItem("hasCodeRunBefore1") === null) {

   jQuery('#myModal').show();

         document.getElementById("video1").play();

        localStorage.setItem("hasCodeRunBefore1", true);

   

           video = document.getElementById('video1');

            video.addEventListener('ended',function() {   

            window.location.href = 'https://americanalliance.dgquick.in/guest/welcome.php';});

    }

   });

No comments:

Post a Comment