playIt is not a jQuery function, but a function of the DOM element. Therefore, you need to call it on the DOM element.
:
$('video').get(0).play();
, jQuery - $('#videoId').get(0).play().
:
, .preventDefault(). preventDefault().
$('a').bind('click', function(e) {
e.preventDefault();
$('video')[0].play();
});