If you are using an HTML5-based player, you can interact with the <video> element using your DOM API , as Tony told you in the answer.
If you use a Flash player, you can interact with it using the YouTube JavaScript Player API . The player element seems to have id movie_player , and I have no problem using the API methods directly on YouTube.com:
$('#movie_player').playVideo(); $('#movie_player').seekTo(60); $('#movie_player').pauseVideo();
Also, don't confuse $ , no jQuery.
source share