• User Attivo

    Redirect video

    Salve a tutti, volevo aggiungere un redirect alla fine del video VIMEO che ho usato come background di un sito in wordpress.
    La parte di codice che trovo nel JS è questa:

    $allVideos.each(function(){
    var $this = $(this);
    if (this.tagName.toLowerCase() == 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
    var height = this.tagName.toLowerCase() == 'object' ? $this.attr('height') : $this.height(),
    aspectRatio = height / $this.width();
    if(!$this.attr('id')){
    var videoID = 'fitvid' + Math.floor(Math.random()*999999);
    $this.attr('id', videoID);
    }
    $this.wrap('<div class="fluid-width-video-wrapper"></div>').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");
    $this.removeAttr('height').removeAttr('width');
    });

    ho provato ad aggiungere:

    $f(iframe).addEvent('finish', function(){** console.log("redirect"); **** window.location = window.location.origin+"/chi-siamo";**** });

    ma non funziona.
    cosa sbaglio?**