I\'ve looked through a couple of questions to find out if an HTML5 element is playing, but can\'t find the answer. I\'ve looked at the W3 documentation and it has an event n
jQuery(document).on('click', 'video', function(){ if (this.paused) { this.play(); } else { this.pause(); } });