Skip to content

Instantly share code, notes, and snippets.

@kary4
Last active November 23, 2017 11:20
Show Gist options
  • Save kary4/7c58fd5f4457442b943f8c7a3346008f to your computer and use it in GitHub Desktop.
Save kary4/7c58fd5f4457442b943f8c7a3346008f to your computer and use it in GitHub Desktop.
<script>
jQuery( document ).ready(function() {
jQuery('.et_pb_audio_cover_art').each(function(){
let thisAudio = jQuery(this).parent().find('audio').get(0);
jQuery(this).click(function(){
if (thisAudio.paused) {
thisAudio.play();
} else {
thisAudio.pause();
}
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment