I\'m trying to place a video that autoplays without controls but I want to add three custom buttons below the video, each button jumps the video to a specific time. Not usin
Your links feature two different problems:
To control a video on a page directly without leaving the page, you'll need some javascript. Here you'll find an example how this will work.
JS Fiddle: Video CurrentTime Example
You'll need a function to jump to the specific time on click of one of your links, that would be (for instance):
var firstlink = document.getElementByTagName('a')[0];
firstlink.addEventListener("click", function (event) {
event.preventDefault();
myvideo.currentTime = 7;
myvideo.play();
}, false);