I am making a site that displays trailers of TV Shows, but one thing: I want the trailers to play depending on time. Like the today's date is: 10 August, so I want to display the trailer of EPISODE 1 and if today's date is: 11 August, it will display EPISODE 2's trailer and so on.
(I dont want it to change the season, only the episode)
IFRAME CODE:
<iframe src="https://example.org/imdb/tmdb/trailers/?id={ID}&s={SEASON}&e={EPISODE}" width="100%"
height="500px">
(I would prefer JS answers)