I have a click handler to fire the built in jwplayer().stop();
functionality. However only my first handler executes and the other one fails (but no errors are logged).
The videos are embedded into the element divs in the view.
In another words: I can stop the first video but not the second, third and so on even though I'm able to log every subsequent click inside my function()
.
Thoughts? Thank you.
$(function(){
console.log('ready');
$('.stop').on('click',function stopVideo () {
//stop JW player
if (typeof(jwplayer) != 'undefined') {
console.log('video stopped');
jwplayer().stop();
}
})
});
view
<body>
<div class="container">
<!-- first video -->
<div class="jw" style="width: 40%; margin: 10px auto">
<script src="//content.jwplatform.com/players/4sng2RGX-UQtQ90mG.js"></script>
<button class="stop" style="padding: 8px 19px; float: right; margin: 10px">stop video</button>
</div>
<!-- second video -->
<div class="jw" style="width: 40%; margin: 10px auto">
<script src="//content.jwplatform.com/players/z5Jka98V-UQtQ90mG.js"></script>
<button class="stop" style="padding: 8px 19px; float: right; margin: 10px">stop video</button>
</div>
</div>
</body>
Per JW documentation under Targeting Multiple Players:
Here's a solution:
view
I agree that's unfortunate when someone votes a question down without giving a reason for it. Keep it up and Happy coding!