Skip to content

Instantly share code, notes, and snippets.

View TinyUnicornTeeth's full-sized avatar

TinyUnicornTeeth

View GitHub Profile
@lots0logs
lots0logs / epanel-integration-body.html
Created March 15, 2016 20:52
WordPress :: Divi Builder :: Background Videos :: Mute a video's audio.
<script>
(function($) {
$(document).ready(function() {
var $videos = $('.et_pb_section_video_bg video');
$videos.each(function() {
var $video = $(this)[0];
$video.setMuted();
});