This question is locked. New answers and comments are not allowed.
I use Telerik Platform to build a cordova app, i have a standard html5 video like this :
<video id"videoarea" width="400"> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video.</video>i want to set a volume control but not only for the video, not like this :
var vid = document.getElementById("videoarea");vid.volume = 0.5;I want to set a volume control for all medias element, so i want to control this :
https://i.stack.imgur.com/XzjwK.png
How i can do this in Cordova Telerik platform ?
Thanks and sorry for my poor english.