[please refer attached scrnshot, i want to remove play/pause icon which i'm pointing] [scrnshot] How to remove/hide only play/pause icon/button from video tag's media player. As i'm adding controls attribute dynamically using jquery. It gives all icons, i want to hide/remove only play/pause button not other(i.e. want Fullscreen icon mandatory). Is there any solution for this??
Below is the code for adding controls attribute to video tag dynamically
showVideoControls() {
var elem = document.getElementById("remote_video");
if (elem.requestFullscreen) {
$("video").attr("controls",true);
}
}