I am trying to play a specific moment of an embedded Youtube video using some javascript code. At the specified time, I execute the following code:
document.getElementById("video").src= "https://www.youtube.com/embed/...?autoplay=1&start=212";
where "video" is my iframe element. The issue arises when testing this in different browsers - Internet Explorer plays the video correctly at the designated time, while Chrome shows suggested videos instead of playing the video. On mobile browsers like Samsung and Ghostery, the video simply appears without playing. What could be causing this inconsistent behavior? Could it be related to my gmail or youtube accounts settings, or perhaps browser configurations?