I have initialised the element using:
$('video').mediaelementplayer();
Now I would like to target that video and pause it when a link is pressed:
$('.page_button').live('click', function() {
$('video').pause();
});
Thanks.
I have initialised the element using:
$('video').mediaelementplayer();
Now I would like to target that video and pause it when a link is pressed:
$('.page_button').live('click', function() {
$('video').pause();
});
Thanks.
Share Improve this question asked Oct 11, 2011 at 16:24 evolutionxboxevolutionxbox 4,1226 gold badges38 silver badges57 bronze badges 01 Answer
Reset to default 20Each element with a media player element has a player property defined. This is where all the methods reside. You can access it with either of the following methods:
$('video')[0].player.pause(); // Be sure the video element exists.
$('video').each(function(){this.player.pause()}) // Safe.