Question

I have the following video iFrame embed code on a page on my website (mywebsite.com/page2) - it plays a video that is hosted on an external site (http://wistia.com). I want to be able to send email clients a link to my video on my page (mywebsite.com/page2/mywebsitevideolink) - not a link to the external website, a link that opens up mywebsite.com/page2 and displays the video on my page that you would have to scroll down to see and starts playing it. How can this be accomplished? Thanks.

<p class="rtecenter"><iframe allowfullscreen=""
allowtransparency="true" class="wistia_embed" frameborder="0"
height="480" mozallowfullscreen="" msallowfullscreen=""
name="wistia_embed" oallowfullscreen="" scrolling="no"
src="//fast.wistia.net/embed/iframe/myvideo" webkitallowfullscreen=""
width="640"></iframe></p> "
Was it helpful?

Solution

Modify your p tag to <p class="rtecenter" id="video">and then your link is http://mywebsite.com/page2#video

Hope that this'll help you.

You can also set up a file which displays when you type /page2/mywebsitevideolink and redirects to /page2#video

OTHER TIPS

If you want to link to a certain part of your page, just use an anchor link.

<div name="videopart">
VIDEO HERE
</div>

And for the link: http://yoursite.com/video.html#videopart

And for the player to autoplay, if you are using your video hosting's player, look in teir documentation for how to autoplay. If your just using the html tag, and the word autoplay in the beginning tag.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top