I'm using jwplayer latest version 6.8. I try to use jQuery to call function when user clicked my logo in the player but it doesn't work.
This is the logo's image tag of the player in HTML:
<img class="jwlogo" id="container_logo" src="..." />
This is the jQuery function:
<script type="text/javascript">
$(document).ready(function(){
$("#container_logo").click(function() {
alert('Work!');
});
});
</script>
This is the test page: http://vt-test.co.nf
Any help please?