03.04.2024, 07:47
Try this:
Code:
$(function() {
$('iframe').one('load', function() {
let forecastDate = (new Date()).toISOString().split('T')[0];
this.src = 'https://reg.bom.gov.au/places/vic/melbourne/forecast/detailed/#d' + forecastDate;
});
});