Код: Выделить всё
function refreshAllIframes() {
const iframes = document.querySelectorAll('iframe');
iframes.forEach(iframe => {
const url = new URL(iframe.src);
url.searchParams.set('timestamp', new Date().getTime());
iframe.src=url.toString();
});
}
setInterval(refreshAllIframes, 10000);
https://docs.google.com/spreadsheets/d/e/2PACX-1vTb_FLqllCprfiONXzn0qYD7N8KF7WBZuaH0sDANthjZBrwdVSwiz2KPFu7M5VHluxZ3io3sgr1_wnh/pubhtml?gid=0&headers=false&chrome=false&range=B:H×tamp=
Подробнее здесь: [url]https://stackoverflow.com/questions/79242327/update-embedded-google-sheet-faster-than-5-minutes[/url]
Мобильная версия