Turning Off Closed Caption On Html5 Video By Default August 06, 2023 Post a Comment Here's what I have... <scripttype="text/javascript"> $(document).ready(function() { var video = document.querySelector('#video'); // get the video elementvar tracks = video.textTracks; // one for each track elementvar track = tracks[0]; // corresponds to the first track element track.mode = 'hidden'; }); Copy Share You may like these postsTrying To Get Property 'num_rows' Of Non-objectGet A Particular Cell Value From Html Table Using JavascriptJquery Ajax Post To Mysql Table For Dynamic Table Data- Am I Doing This In Anything Like The Right Way?Is It Safe To Put An Id (will Insert In Db) Into A Hidden Input? Post a Comment for "Turning Off Closed Caption On Html5 Video By Default"
Post a Comment for "Turning Off Closed Caption On Html5 Video By Default"