Skip to content

Instantly share code, notes, and snippets.

@simsketch
Created August 14, 2014 19:39
Show Gist options
  • Save simsketch/7a7405f1666a9d042253 to your computer and use it in GitHub Desktop.
Save simsketch/7a7405f1666a9d042253 to your computer and use it in GitHub Desktop.
remove sound
<script type="text/javascript">
jQuery( document ).ready(function( $ ) {
$('.container').find('audio, video').each(function(){
this.volume = 0;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment