I\'ve found how to pause and play the video using jquery
$(\"video\").get(0).play(); $(\"video\").get(0).pause();
But I can\'t find t
$("video").prop('muted', true); //mute
AND
$("video").prop('muted', false); //unmute
See all events here
(side note: use attr if in jQuery < 1.6)
attr