Change Video Volume via jquery
I want to change the volume of a video using jQuery. So far it’s not working. The trigger(‘play’) works. Is it a problem because the element has no id? jQuery(‘.v1 .wpb_single_image’).click(function() { jQuery(this).addClass(".v1 open-video"); //add the class to the clicked element jQuery(".v1 video").trigger(‘play’); jQuery(".v1 video").volume = 1.0; }); If but by nice if somebody can… Read More Change Video Volume via jquery