I am not a coder but I am able to successfully create the function I want with JWPlayer:
<div id="myElement">Loading the player...</div>
<script type="text/javascript">
jwplayer("myElement").setup({
file: "media/video.mp4",
image: "images/title.gif",
controls: true,
width: 320,
height: 240
});
</script>
With the above script, the following link will seek to 1 minute: a href="#" onclick="jwplayer(myElement).seek(60)"
How can I create similar html links for videojs to be able to seek to arbitrary points in the video?